form values pass fail with iis+php(cgi)

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
tehtali
Forum Newbie
Posts: 1
Joined: Mon Dec 02, 2002 12:09 am

form values pass fail with iis+php(cgi)

Post by tehtali »

I've a problem in passing my form values, very simple example as:(It works fine without IIS, but commit failures once I swith on the IIS web server, WHY?)
<html>
<head>
<title></title>
</head>

<body>
<FORM METHOD="GET" ACTION ="myName.php">
<BR>
<BR>
<font-family: comic sans ms> <b>What is your name?</b> </font>
<input type="text" name="author">
<br><br>
<input type="submit" value="Send">
</FORM>
</body>
</htm>

myName.php:
<html>

<head>
<title></title>
</head>

<body>
Your name is:
<?php
echo $author;

?>

</body>

</html>
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post by volka »

Post Reply