$_POST bir Süper global değişkendir.
<form method="post" action="a.php"> Name: <input type="text" name="isim"> <input type="submit"> </form>
a.php
$name = $_POST['isim']; echo $name;
Swap insights and ask questions about “PHP Temel”.