test.php:
<?php
$d=$_GET['data'];
echo $d;
?>
when i go to
www....com/test.php?data=1
nothing happens.
I have read a few articles on passing variables through the url and i believe this is the right syntax. Anyone see something im doing wrong?
Thanks
<?php
$d=$_GET['data'];
echo $d;
?>
when i go to
www....com/test.php?data=1
nothing happens.
I have read a few articles on passing variables through the url and i believe this is the right syntax. Anyone see something im doing wrong?
Thanks
Comment