1 / 4
Dec 2007

I'm not receiving the following information on a purchase and I don't know why:



-item_namex

-quantityx



I followed the help here:

http://www.e-junkie.com/ej/help.selling-codes.php



I'm posting the info to a db using my code-generator / save-purchase-info PHP. PHP code looks like this;



if ($_POST['quantityx'])

$ITEM_COUNT = $_POST['quantityx'];



And later $ITEM_COUNT goes into a MySQL db. Every other field works, except those 2 and I need them.



I tried with a test form and those fields save data in the db, so I guess I'm not getting such info from E-Junkie?



Please help ASAP, as I would like to launch my store tomorrow.



I love the E-Junkie experience so far! :slight_smile:

  • created

    Dec '07
  • last reply

    Dec '07
  • 3

    replies

  • 836

    views

  • 2

    users

  • 1

    link

> I love the E-Junkie experience so far! :)



Good to know :)



As mention in the documentation "x" will be 1,2,3 etc. , so you sold two items you will get item_name1 & item_name2.

Thank you for the follow up info. I had missed the part of the documentation where X is 1,2,3... I see now that item_cart_position describes that X is for the other variables too.



Overall I find the documentation a little quirky; information that could exist in a single place is spread out over 3 or more places (like post variables), and following the above example, things are not always very clear (would love to see more template examples and of course MySQL data types; such info would help E-Junkie grow, I think).



That said, it's still a wonderful service! Thank you!

> information that could exist in a single place is spread out over 3 or more

> places (like post variables),



Integration, Redirection and Cuztomization are 3 different things and template variables and POST parameters are 2 separate things as well.



MySQL data types are for you to decide based on the functions you want to perform on the data.