Re: [PHP-DB] two inserts at once?

2003-01-09 Thread Ignatius Reilly
If you are using MySQL, you can't. (none of my business, but why not simplifying your table names: faqProduct instead of faqRelatedToProduct ?) Ignatius - Original Message - From: Michael Knauf/Niles [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Re: [PHP-DB] two inserts at once?

2003-01-09 Thread Jason Wong
On Friday 10 January 2003 01:04, Michael Knauf/Niles wrote: This Code Snippet works: $newfaq_query = INSERT INTO `faq` (`faqid`, `question`, `answer`) VALUES ('', '$question', '$answer'); $newfeaturesResult = mysql_query($newfeatures_query); But I'd like to combine that query with this

Re: [PHP-DB] two inserts at once?

2003-01-09 Thread Michael Knauf/Niles
] biz cc: Subject: Re: [PHP-DB] two inserts at once