Just read what the error is telling you... field mismatch - means either there are too many column names, or too many values. After matching them up, you have too many values trying to be inserted into the database.
It looks like you have the stars hack installed because the extra spaces are the ,'','', below from the error message:
'1','','','pg')
If you have the stars hack installed, make sure on the $DB_site->query line just before VALUES you have the following:
nosessionhash,starlevel,starimg,country)
Currently you only have:
nosessionhash,country)
If you don't get what I mean let me know.
|