Hi!
I'm having the following problem,
I can't the pass the variable "name" from the hyperlink on welcome.html to welcome.php. When I try it just says "Welcome to our Web site, !". The code looks right to me, so I guess it might be a configuration problem...? I've also tried other formats like .php3 and .php4 with the same result.
welcome.html:
<A HREF="welcome.php?name=Kevin"> Hi, I'm Kevin! </A>
welcome.php
<?php echo( "Welcome to our Web site, $name!" );?>
Thanks in advance!
Simon