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