Jump to content

CoalFired - Ben

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Contact Methods

  • Website URL
    http://www.coalfired.net

Profile Information

  • Gender
    Not Telling

CoalFired - Ben's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi, As PHP is a server scripting language this wouldn't be entirely possible. You COULD however, store the data input by the user into a temporary table then on first load store a reference number unique to a row in the 'temporary table' to the session and call that for each page. Alternatively you could have the onclick set on the same page so as the user clicks through the forms different content holders with the second part of the form appear below the stage the user was just on. then it's a case of making the values of the form elements on the form to hold the value of what the user has submitted so this could be changed. I hope this helps you, if you have any queries with these suggestions please let me know and I'll try to help you further. Regards, Ben
  2. Hi, I'm not sure if this is what you're looking for or not but I have always input data from an array using the following code: <code> $product_id= $_POST['product_id']; $quantity= $_POST['quantity']; for($i = 0; $i < count($product_id); $i++) { if($product_id[$i]) { // <-- QUERY HERE --> } } </code> If you can provide me with some more information on your problem I may be able to help further if this doesn't help you. Regards, Ben
×
×
  • 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.