Inva
Printable View
Inva
Without looking at the files, this is what the errors mean.
"Parse error in <file> on line <line>".
This means that there is a syntax error on line <line> in the file <file>. Check first for common errors, like forgotten semicolons. Check if every variable you retrieve is set, every function you call exists. Etc.
"Warning: Supplied argument is not a valid MySQL-Link resource in <file> on line <line>"
You call a mysql function in file <file> on line <line>, but the connection variable you passed wasn't valid. This happens when mysql_connect fails.
A very similar error is an invalid MySQL-Result resource, which means that mysql_query failed, usually due to a syntax error in the SQL or referencing of a non-existant field/table.
Inva