Hi
I have a question. I haven't try this yet but rather have someone tell me that it will work or not.
For example I have this let's call this 1.php file
1.php has these two categories
SKU: <?php echo stripslashes($row1['sku']);?>
Item ID: <?php echo stripslashes($row1['itid']);?>
I want to submit these two categories to 2.php, 3.php and appear on 4.php (final)
1.php - Once I submited this form it will go to 2.php
Now I'm on 2.php
Can I used this
<input name="sku" type="hidden" id="sku" value="yes"/>
<input name="itid" type="hidden" id="itid" value="yes"/>
To submited to 3.php and finally appear on 4.php?
I know this sound dumb but can this work?
I really do appreciate if someone explained to me how this works!