Jump to content

w1n78

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Contact Methods

  • Website URL
    http://abbyandwin.net

Profile Information

  • Gender
    Not Telling

w1n78's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. here's something to get you started. <form method="post" action="some_page.php"> <input name="qualification[]" type="text" /><br /> <input name="qualification[]" type="text" /><br /> <input name="qualification[]" type="text" /> <input type="submit" value="submit" id="submit" name="submit" /> </form> if (isset($_POST['submit'])) { for ($i=0; $i<count($_POST['qualification']); $i++) { if ($_POST['qualification']) { // insert into database } } } that's just a quick code off the top of my head. there may be syntax errors but i hope you get the idea. there are other ways but this is the "quick and dirty" way.
  2. something like these? http://www.weberdev.com/get_example-4689.html or http://viralpatel.net/blogs/2009/01/dynamic-add-textbox-input-button-radio-element-html-javascript.html here's what i googled... http://www.google.com/search?q=javascript+dynamic+form+fields then you can use a loop in php to do your insert
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.