I’m getting this error:
#1064 – You have an error in your SQL syntax; check the manual
that corresponds to your MySQL server version for the right syntax to
use near ‘VALUES (1039,200,’2′,NULL,NULL,NULL,’cash’,NULL,1)’ at line
1
for this query:
INSERT INTO anu_donations
(projectid,donation_amount,donated_by,donated_by_uid,donation_details,
comments,payment_medium,donor_comments,created_by)VALUES (1039,100,’1′,NULL,NULL,NULL,’cash’,NULL,1), VALUES
(1039,200,’2′,NULL,NULL,NULL,’cash’,NULL,1);

You only need
VALUESonceSee INSERT in the MySQL docs: