Good Morning!
I am using code to call the php to update a file. While in the php file, a CGI error message appears saying that it does not recognize the variable. It provides a line number. The variable is the name of the object on the form. Here's the code.
Also, I am using IIS 5.0 with a standard PHP configuration. Do I need to change anything?
<form action="replace.php" method="post">
<input type="text" name="Text1" >
<input type="submit" name="submit" value="submit">
</form
While in the replace.php file, I have tried several variations of the following line specified by the CGI error message:
print "$Text1"
No luck! I thought the php takes the name and assigns it as a variable name?
Thank you in advance for your help!
Smuckers
I am using code to call the php to update a file. While in the php file, a CGI error message appears saying that it does not recognize the variable. It provides a line number. The variable is the name of the object on the form. Here's the code.
Also, I am using IIS 5.0 with a standard PHP configuration. Do I need to change anything?
<form action="replace.php" method="post">
<input type="text" name="Text1" >
<input type="submit" name="submit" value="submit">
</form
While in the replace.php file, I have tried several variations of the following line specified by the CGI error message:
print "$Text1"
No luck! I thought the php takes the name and assigns it as a variable name?
Thank you in advance for your help!
Smuckers