Hello,
I just made a Gentoo box, with Apache2 and php4 so that I could learn php and a non-windows enviornment.
My problem is that I am unable to pull information from a querystring, which I thought (perhaps incorrectly 😕) was as simple as refrenceing the variable.
name.php:
<html>
<head><title/></head>
<body>
<?php print ($FirstName);?>
</body>
</html>
querystring:
mydomain.com/name.php?Firstname=Guilo
output:
<html>
<head><title/></head>
<body>
</body>
</html>
Can someone please tell me what I've done wrong?
(I installed Gentoo sync'd portage and emerged mod_php which put on php mysql and apache other than that I've not changed anything related to php)