Hey guys, I've got a pretty simple code and for some reason the email will not print and i cannot figure out for the life of me why.
here's the code:
<?php
$name = $_GET['name'];
$email = $_GET['email'];
print "thank you, $name. we will contact you at $email";
?>
the freaking $name shows up just fine but the $email comes up blank. The variable vaues come from the following link:
<a href=\"thanks.php?name=$name&email=$email\">
why is the email not showing up? I am entering one in the form
Thanks in advance for any help!
|