moraga – 6:27 am
From array to URL
$_GET is an associative array of variables passed in URL. Example: http://exemplo.com?name=Alejandro&age=23&gender=male That URL have many variables: print_r($_GET); array ( name => Alejandro, age => 23, gender => male ) We can access the variable values using indexes: echo $_GET['age']; // show 23 echo $_GET['gender']; // show male From array to URL parameters Doesn’t exists [...]