Results 1 to 1 of 1

Thread: MySQL Problems -> Solving (Always Updating)

  1. #1
    Join Date
    Jul 2007
    Location
    Azerbaijan, Baku
    Posts
    144
    Thanks
    11
    Thanked 27 Times in 25 Posts

    Default MySQL Problems -> Solving (Always Updating)

    Actual Problems:

    1.
    Code:
    mysql_fetch_array(): supplied argument is not a valid MySQL result resource
    This error appears when you have something wrong on your query (or something else, that i have never meet). First of all look at your code. And make sure that you have mysql_error() on your query. Something like this:

    Code:
    $result = mysql_query($query) or die(mysql_error());
    When you will do this, if you have something wrong on your query you will get full error. With this error you will easily find how to solve it.

    Threads:
    http://www.dynamicdrive.com/forums/s...ad.php?t=33886
    http://www.dynamicdrive.com/forums/s...ad.php?t=12721
    http://www.dynamicdrive.com/forums/s...ad.php?t=34914

    -------------------------------------------------------------------------------------------------------------------------

    P.S.1. Plz PM me what to add

    P.S.2. Haven't time to write all at once. That's why will make it part-by-part

    P.S.3. I couldn't write in Codes And Tutorials section plz, moders move this thread there if it is possible
    Last edited by allahverdi; 09-09-2008 at 06:12 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •