Hello all....I have a question which I assume has a pretty simple answer...but I can't figure it out for the life of me. I have written an HTML form and I have the following code:
<a href:"http://www.blahblah.php?selection=yes">
and I am assuming that when I click on the link on the it opens the .php file and sends the selection variable to it. However, I am unable to retrieve it in my .php file. Currently, I am using this code in the .php file:
$choice=$_GET['selection'];
I have also tried:
$choice=$_POST['selection']
does anyone have any idea what I have done wrong?
Please Help!!!