How to call an html form back
Posted
by user225269
on Stack Overflow
See other posts from Stack Overflow
or by user225269
Published on 2010-04-19T07:13:52Z
Indexed on
2010/04/19
7:23 UTC
Read the original article
Hit count: 391
I have this html form which will then it will call addstuds.php to execute the code for inserting records in mysql database.
<form name="formcheck" method="post" action="addstuds.php">
<td width="30" height="35"><font size="3">*I D Number:</td>
<td width="30"><input name="idnum" onkeypress="return isNumberKey(event)" type="text" maxlength="5" id='numbers'/></td>
</tr>
<tr>
<td width="30" height="35"><font size="3">*Year:</td>
<td width="30"><input name="yr" onkeypress="return isNumberKey(event)" type="text" maxlength="5" id='numbers'/></td>
<td width="30" height="35"><font size="3">Section:</td>
<td width="30"><input name="sec" type="text" maxlength="15"></td>
</tr>
What do I need to do so that the regstuds.php(html form) will be the one that will be seen again after the insert code in addstuds.php will finish executing?Please help
© Stack Overflow or respective owner