Hi,
I have encountered a submit problem. Even the simplest response to the simplest submit request doesn't work.
The HTML source code comes here:
<BODY>
Please Fill Registration Info:<BR>
<FORM name="ss" ACTION="query1.php" method=POST>
Your Name(*): <INPUT TYPE=text NAME="username"><BR>
<INPUT TYPE=SUBMIT Value="Query">
<Button Name="guest" type="Submit" action="query1.php">Guest</Button>
</FORM>
</BODY>
And the content of query1.php comes here:
<BODY>
<?php
echo "Hello World!";
?>
</BODY>
When I click the "Query" button, the IE return an error number HTTP 500. But when I click the "refresh" button of IE, the php file works properly. What's the matter?
My environments are WinNT4.0 + PWS + PHP4.0.6 with extensions MSSQL and LDAP.
Any suggestions are welcome.
Thx in advance!
Walter Lee