What do i need to do to post the different page information into a table in database

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bb nicole
    New Member
    • Jan 2007
    • 127

    What do i need to do to post the different page information into a table in database

    Below is my interface for resume which need to post into database...
    I have did it all in one page and it already can send into database which the table name resume...
    But my letturer now want me to seperate it in to 4 pages( 1 page is for personnel particular, 1 page is for education, 1 page is for worl experience and so on). And it is need a next button to continue it, at last user need to click on post resume button and post to database. What do i need to do to post the different page information into a table in database??? Can someone give me a guildeline?? Thanks..



    [HTML]<form name="act" method="post" action="do_resu mePre.php">
    <table width="632" border="0">
    <tr>
    <td colspan="3"><fo nt color="#000000" ><strong>PERSON AL PARTICULARS</strong></font></td>
    </tr>
    <tr>
    <td width="215"><fo nt color="#000000" >Full Name</font><font color="#000000" >&nbsp;</font></td>
    <td width="29"><div align="center"> <strong>:</strong></div></td>
    <td width="374"><in put name="fullName" type="text" maxlength="30"> </td>
    </tr>
    <tr>
    <td><font color="#000000" >NRIC</font></td>
    <td><div align="center"> <strong>:</strong></div></td>
    <td><input name="nric" type="text" maxlength="14"> </td>
    </tr>
    <tr>
    <td><font color="#000000" >Gender</font></td>
    <td><div align="center"> <strong>:</strong></div></td>
    <td><select name="gender">
    <option>Male</option>
    <option>Femal e</option>
    </select></td>
    </tr>
    <tr>
    <td colspan="3"><fo nt color="#000000" ><strong>EDUCAT ION</strong></font></td>
    </tr>
    <tr>
    <td height="75" colspan="3"> <textarea name="education " cols="66" rows="4"></textarea></td>
    </tr>
    <tr>
    <td colspan="3"><di v align="center"> </div></td>
    </tr>
    <tr>
    <td colspan="3"><st rong>WORK EXPERIENCES</strong></td>
    </tr>
    <tr>
    <td colspan="3"><fo nt color="#000000" >
    <textarea name="workExp" cols="66" rows="4"></textarea>
    </font></td>
    </tr>
    <tr>
    <td colspan="3"><di v align="center"> </div></td>
    </tr>
    <tr>
    <td colspan="3"><st rong>EXTRA CURRICULAR ACTIVITIES</strong></td>
    </tr>
    <tr>
    <td colspan="3"> <textarea name="curricula rAct" cols="66" rows="4"></textarea></td>
    </tr>
    <tr>
    <td colspan="3"><di v align="center"> </div></td>
    </tr>
    <tr>
    <td colspan="3"><st rong>EXTRA SKILLS</strong></td>
    </tr>
    <tr>
    <td colspan="3"> <textarea name="skills" cols="66" rows="4"></textarea></td>
    </tr>
    <tr>
    <td colspan="3"><di v align="center"> </div></td>
    </tr>
    <tr>
    <td colspan="3">
    <textarea name="reference " cols="66" rows="4"></textarea></td>
    </tr>
    <tr>
    <td colspan="2"><di v align="center">
    <input type=hidden name=act value=adduser>
    <input name="Create Resume" type="submit" id="Create Resume" value="Create Resume">
    </div></td>
    <td><div align="center">
    <input type="reset" name="Reset" value="Reset">
    </div></td>
    </tr>
    </table>[/HTML]
  • tolkienarda
    Contributor
    • Dec 2006
    • 316

    #2
    hi

    i would save all of your variables to $_SESSION variables on each page and just carry them over and then at the final page the submit button will submit all of your session variables.

    eric

    Comment

    Working...