|
-
Jan 20th, 2004, 07:49 AM
#1
Thread Starter
Hyperactive Member
Where is the error here???!!!!!!!![Resolved]
Last edited by raladin; Mar 29th, 2014 at 10:45 PM.
-
Jan 20th, 2004, 09:20 AM
#2
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.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Jan 20th, 2004, 09:39 AM
#3
Thread Starter
Hyperactive Member
Last edited by raladin; Mar 29th, 2014 at 10:45 PM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|