Your problem is that you put a semi-colon in the middle of the line, so MySQL thinks you are done when you aren't. Try something like this:
Code:
INSERT INTO multiprods (
ProductName,
ImageSrc,
URL,
Category,
Description,
Country,
Company
)VALUES (
'Aloecure Free Trial',
'images/42/182/5135.jpg',
'http://affiliates.adorablyyou.com/z/5135',
'Health',
'AloeCure helps naturally balance the stomach’s pH, decreasing the acidity and preventing that burning feeling so many complain of.',
'All',
'CPA'
),(
'Product B',
'images/42/182/5498.gif',
'http://www.supplierB.com',
'Kitchen',
'Long description',
'UK',
'AYL'
);
See the MySQL Reference for more.
You were also missing a single quote, but I assume that was a typo. When posting code, even MySQL code, it's helpful to put it in code tags and make is as easy to read as possible.
Bookmarks