hi list, new lurker here...
so i'm trying to config my IIS webserver to recognize and execute php scripts... it's almost there but i'm having some probs. the server sees the .php extension, and executes code inside the file. but, if i try to pass any information/variable/whatever via an html form from one file to the next, none of the values are picked up via file #2. for example, here is a test html file i'm using: <html><body> <form action="myOutput.php" method="post"> Enter your name: <input type="text" name="myVar"> <br> <input type="submit" value="send info"></form> </body></html> and the php action: <html> <body> <?php echo "Your name is: " . $myVar; ?> </body> </html> in theory the form info is passed to the new file and included in output. on my IIS webserver it is not. anybody have a direction for me to look in? i'm new to the IISAdmin as well, so please include all relevant info. thanks! \\ the onion -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]