Skip to content
Advertisement

Warning: mysql_result(): supplied argument is not a valid MySQL result resource in (…) on line 4

Here is my snippet.

I’ve checked some other questions similar to my error, but so far I can’t get it solved.

JavaScript

Advertisement

Answer

You should split your code in some more lines to handle those errors or special cases. mysql_query will return zero to n rows or an error if it occurs. The returned resource will therefore only be true on non-error queries. This can be used to handle such situations like follows.

At first build and execute query, next process the resource.

JavaScript

u may use the following to determine what is going on in case of an error:

JavaScript

or these idea to handle the problem

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement