First of all, thanks in advance for everyone's help.
I'm new to this stuff, however I'm catching on fast.
I'm working on a e-commerce app where I send a user's credit card info to a merchant company. I request fields back from from them using php to determine whether the transaction was successful. I then echo to the user whether or not the transaction was sucessful using if else type statements.
If transaction was successful I need to echo a post form with hidden values pulled from a session variable in order to capture user information to store in a database. I'm sending this information to a "off the shelf" php form processing script which sends information to a .csv file and also sends user a autoresponder email.
QUESTION: How do I echo a html post form? I've tried and can't get it to work. I would rather not send information to the php script using the post method with hidden fields, however I don't know another way.
Thanks again....