Something easy to fix?

Reply

Join Date: Aug 2008
Posts: 24
Reputation: ocbphoto is an unknown quantity at this point 
Solved Threads: 1
ocbphoto ocbphoto is offline Offline
Newbie Poster

Something easy to fix?

 
0
  #1
Nov 4th, 2008
I can make the INPUT for QTY pass the value to my hidden field of quantity, what i want to try is something really easy.

I want the user to choose the quantity and pass the variable to my form, please help

Thank you for your time amigos

OCB


  1. <form method="post" action="https://pay.com/live/shop/add_to_cart">
  2. Qty:
  3. <input name="cantidad" type="text" id="cantidad" size="2" />
  4. <?php $cantidad = $_POST["cantidad"]; ?>
  5. <br />
  6. <input type="hidden" name="store" value="project321">
  7. <input type="hidden" name="need_to_ship" value="no">
  8. <input type="hidden" name="need_to_tax" value="no">
  9. <input type="hidden" name="identifier" value="<?php echo $row_rsMiscDetail['part_number']; ?>">
  10. <input type="hidden" name="description" value="<?php echo $row_rsMiscDetail['product_name']; ?> <?php echo $row_rsMiscDetail['product_model']; ?>">
  11. <input type="hidden" name="quantity" value="<?php echo $cantidad = $_POST["cantidad"]; ?>">
  12. <input type="hidden" name="price" value="<?php echo $row_rsMiscDetail['price']; ?>">
  13. <input type="hidden" name="fingerprint" value="820a4a580170e88df93d26beb7a2eafa">
  14. <table border="0" cellpadding="0" cellspacing="2">
  15. <tr>
  16. <td align="center" valign="bottom"><label>
  17. <input name="submit" type="image" id="submit" onclick="this.form.submit()" src="images/buy_button.png" alt="add_to_cart" />
  18. </label></td>
  19. </tr>
  20. </table>
  21. </form>
Reply With Quote Quick reply to this message  
Join Date: Sep 2007
Posts: 1,475
Reputation: cwarn23 has a spectacular aura about cwarn23 has a spectacular aura about cwarn23 has a spectacular aura about 
Solved Threads: 136
cwarn23's Avatar
cwarn23 cwarn23 is offline Offline
Nearly a Posting Virtuoso

Re: Something easy to fix?

 
0
  #2
Nov 5th, 2008
I want the user to choose the quantity and pass the variable to my form, please help
If you are meaning to setup another page/form which submits to this form the quantity then first the code you mentioned will need to be altered to the below:
  1. <form method="post" action="https://pay.com/live/shop/add_to_cart">
  2. Qty:
  3. <input name="cantidad" type="text" id="cantidad" size="2" />
  4. <br />
  5. <input type="hidden" name="store" value="project321">
  6. <input type="hidden" name="need_to_ship" value="no">
  7. <input type="hidden" name="need_to_tax" value="no">
  8. <input type="hidden" name="identifier" value="<?php echo $row_rsMiscDetail['part_number']; ?> ">
  9. <input type="hidden" name="description" value="<?php echo $row_rsMiscDetail['product_name']; ?> <?php echo $row_rsMiscDetail['product_model']; ?>">
  10. <input type="hidden" name="quantity" value="<?php echo $_POST["cantidad"]; ?> ">
  11. <input type="hidden" name="price" value="<?php echo $row_rsMiscDetail['price']; ?>">
  12. <input type="hidden" name="fingerprint" value="820a4a580170e88df93d26beb7a2eafa">
  13. <table border="0" cellpadding="0" cellspacing="2">
  14. <tr>
  15. <td align="center" valign="bottom"><label>
  16. <input name="submit" type="image" id="submit" onclick="this.form.submit()" src="images/buy_button.png" alt="add_to_cart" />
  17. </label></td>
  18. </tr>
  19. </table>
  20. </form>

Also the form that submits the quantity to the above form would look something like below: (change the string/text page_name to the name of the php page which contains the above code.
  1. <form method='post' action='page_name.php' style='margin:0; padding:0;'>
  2. Quantity number: <input type='text' value='1' name='cantidad' size='5' maxlength='4'>
  3. <input type='submit' value='submit'>
  4. </form>
And that should allow your users to submit a custom quantity number.
Try not to bump 10 year old threads as it can be really annoying.
Like php then read my website at http://syntax.cwarn23.net/
Star-Trek-Atlantis - now that's what I call a movie ^_^
My favourite PC. - MacGyver Fan
Bad english note: dis-iz-2b4u
Reply With Quote Quick reply to this message  
Join Date: Aug 2008
Posts: 24
Reputation: ocbphoto is an unknown quantity at this point 
Solved Threads: 1
ocbphoto ocbphoto is offline Offline
Newbie Poster

Re: Something easy to fix?

 
0
  #3
Nov 5th, 2008
thank you so much for your time.

Gracias amigo
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the PHP Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC