Jump to content

Chet

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Chet's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Guess I'm not ready for this php stuff yet.. Thanks for taking the time to try to help out.
  2. [!--quoteo(post=363088:date=Apr 9 2006, 02:59 PM:name=Karthikeyan)--][div class=\'quotetop\']QUOTE(Karthikeyan @ Apr 9 2006, 02:59 PM) [snapback]363088[/snapback][/div][div class=\'quotemain\'][!--quotec--]i hope you can got my idea? enough?[/quote] Thanks for replying... but no, I don't understand :)
  3. Hello, I am using the SecureNetShop shopping cart for my business. Their final checkout page (thank you page) posts the items as such (for silent posting): Each item's name, price and quantity are posted in the following format: item1=name~price~quantity item2=name~price~quantity item3=name~price~quantity and so on... So if the customer purchases 3 items it would post like this: item1=Mens Polo Shirt~25.00~2 item2=Ladies Sport Socks~10.00~3 item3=Mens Tie~20.00~1 I am trying to post a row in my DB for each item purchased but I am lost when it comes to arrays or loops. My code below works great as long as the customer only purchases one item. But if they purchase 2 or more items it only inserts the first item instead of all of them. [code]// Insert all ordered items into items table list($order_num, $item_name, $item_price, $item_qty) = split("~", $item1); mysql_query("INSERT into items (inv_num, item_name, item_qty, item_price) VALUES ('$inv_num','$item_name', '$item_qty', '$item_price')");[/code] If I change [b]item1[/b] to [b]item2[/b] it will insert the second item on the list only. If I change it to [b]item3[/b] it will insert only the third product on the list and so on... So I need to get it to insert all items purchased. If anyone can help me out here I would greatly appreciate it :) Thank You
×
×
  • 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.