CH 3 pg 76
YES!! I have read all the facts and posts on this subject already.
YES!! I have read the information on php.net already.
YES!! I have tried every code example in these forums.
Yes, my phpinfo page shows up fine.
Some scripts seem to work, this one absolutly will not.
My global is off, Im using WXP Pro and PHP API version 20020918.
Yes, my registered streams include .php.
After reading all the posts on this subject I cannot believe Im still having a problem and yet, nothing shows up.
The first page:
<html><head><title>Author</title></head>
<body>
<form method = get action = "text.php">
<p>Who is your favoriate author?
<input name = "author" type = "text">
<br />
<input type = submit>
</p>
</form>
</body>
</html>
The Second page:
<html><head><title>Author</title></head>
<body>
<p>Your favoriate author is:
<? php echo $author = $_GET['author'] ; ?>
</p>
</body>
</html>
|