Ok i have kind of a shopping cart i can add products to the cart but i need to email this selected informtaion to an email address.
heres part of the code
$to="me@me.com";
$from_email="Order Enquiry";
$header="Order";
$info="An order has been placed. $price. $item The order ID is $tran_ID.";
mail($to,$header,$info);
This will email me the info including the order id ($tran_ID) i need it to send the price and item in the email pulled from the database. if you need to see all the code to the mail script i can send it.
I hope i made clear wat i am trying to do, i know this is a simple problem but i just cant see it
any help will be greatly received.
Thanks.