adlep
11-07-2002, 02:04 PM
was looking all over the google, couldnt find anything....
Here is my simple web form form:
<form action="clientform.php" method="post" > // to interact with my php script
<font face="Century Gothic" size="2">Service O#:</font> // name of the input, ie: enter your invoice number
<input type="text" name="service_no" size=10 /><br /> // text box, user's input
<font face="Century Gothic" size="2">Last Name:</font> // Enter your last name
<input type="text" name="lastname" size=15 /><br /> // another text box, user's input
<input type="submit" value="Enter query" /></form> // end of the form...
Problem: How do I make these two textboxes to auto reset the entered values (user's input?), right after pressing "Enter query" button?
So the user makes query, gets the result, but when he(she) presses the back buton on the web browser to make another query, previously entered input is already erased?
Does it make sense?
Let me know,
Help,
Here is my simple web form form:
<form action="clientform.php" method="post" > // to interact with my php script
<font face="Century Gothic" size="2">Service O#:</font> // name of the input, ie: enter your invoice number
<input type="text" name="service_no" size=10 /><br /> // text box, user's input
<font face="Century Gothic" size="2">Last Name:</font> // Enter your last name
<input type="text" name="lastname" size=15 /><br /> // another text box, user's input
<input type="submit" value="Enter query" /></form> // end of the form...
Problem: How do I make these two textboxes to auto reset the entered values (user's input?), right after pressing "Enter query" button?
So the user makes query, gets the result, but when he(she) presses the back buton on the web browser to make another query, previously entered input is already erased?
Does it make sense?
Let me know,
Help,
