[PHP-DB] Posting the results of a query to an email

2003-06-11 Thread mike karthauser
Hi, I have been building up a store which now has catalogue and persistant shopping cart which I now want to submit the results (the order) to an email for processing. I have a mysql db called 'cart' that holds: Cart_id, cookie_id, item_id, and quantity. I have a 'products' table which

Re: [PHP-DB] Posting the results of a query to an email

2003-06-11 Thread mike karthauser
on 11/6/03 4:09 pm, mike karthauser at [EMAIL PROTECTED] wrote: I want to select item_code, qty from cart where cookie_id = $_COOKIE[cartId] //the above select needs work And then email these to the client which I would do using php's mail function. Partially answering my own question: