Focus mode

PHP Temel

Post Kullanımı

Post Kullanımı($_POST)

$_POST bir Süper global değişkendir.

  • Süper global değişkenler, her zaman tüm kapsamlarda bulunan yerleşik değişkenlerdir.
  • PHP $_POST, method="post" ile bir HTTP POST isteği gönderdikten sonra verileri toplamak için kullanılır.
<form method="post" action="a.php">
  Name: <input type="text" name="isim">
  <input type="submit">
</form>

a.php

$name = $_POST['isim'];
echo $name;
Banner Up

For a quick start in software development from scratch, check out our specialized training courses

Do you need more education, projects, and mentor support in your journey to learn programming? Join Patika+'s intensive 4-8 month bootcamps, gain all the necessary skills with project-based live classes and customized trainings for you, and start your career!

Banner Down

Comments

You need to enroll in the course to be able to comment!