You have an error in your SQL syntax

I am trying to install a raffle php script, but im tearing my hear out trying to get it to install
i keep getting this error:-

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 'INSERT INTO raf_emails VALUES (1, 'Email Verification Link', 'You or someone els' at line 12

i think its reading this from the data.sql file
this is the first section on that file

[PHP]CREATE TABLE IF NOT EXISTS raf_emails (
enum int(11) NOT NULL auto_increment,
emailid varchar(70) NOT NULL default ‘’,
contents text NOT NULL,
subject text NOT NULL,
description text NOT NULL,
lastedit varchar(150) NOT NULL default ‘’,
lastip varchar(100) NOT NULL default ‘’,
PRIMARY KEY (enum)
) ENGINE=MyISAM ;

INSERT INTO raf_emails VALUES(1, ‘Email Verification Link’, ‘You or someone else at IP Address ~IPADDRESS~ has\r\nsubmitted \r\n\r\nan account at ~SITENAME~\r\n\r\nTo confirm this request and make the account active simply\r\nclick on this link \r\n\r\nbelow:\r\n~PHPURL~/verify.php?~VCODE~\r\n\r\n\r\n~SITENAME~\r\n~SITESLOGAN~’, ‘Account Signup Confirmation Link’, ‘Email sent \r\n\r\nto members when they create their new account (or change the email address on file) if the “Verify Emails” option is enabled \r\n\r\n(set to on).’, ‘7/18/2008 at 10:21a’, ‘76.112.156.26’);[/PHP]

can someone please help me, i dont know what else to try

Sponsor our Newsletter | Privacy Policy | Terms of Service