Dear Sir,
I simplified the problem part for my php coding.
I got a
Notice: Undefined variable: tbxname
error message after I filled out a name and click ¡§submit¡¨ button.
It seems there is a problem for the ISAPI interface between my web server and client. (I am not sure).
Can anybody tell me how to solve this problem?
I use php4.3.1 version.
Thank you very much.
Here is the error part of my coding.
<!-- ------------ test.php --------------- -->
<html>
<body>
<!-- <form> -->
<form action="test.php" method=post name=form1>
<p>Please input your name: <input name=tbxname></p>
<input name=submit1 type=submit value=Submit>
</form>
The text you input is : <? echo $tbxname ?>
</body>
</html>