Article error comments

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Article error comments

    hey guys please help im getting error on this 2 line

    Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/waplive/public_html/chat/articles.php on line 432


    Code:
     $countpics = mysql_fetch_array(mysql_query("SELECT COUNT(id) FROM iwbf_cwart WHERE artid='".$artid."'"));
     echo "<br/><a href=\"articles.php?&amp;action=artcom&amp;sid=$sid&amp;id=$id&amp;artid=$id&amp;cid=$cid\">Comments($countpics[0])</a>";
    Code:
      $noi = mysql_fetch_array(mysql_query("SELECT COUNT(*) FROM iwbf_cwart WHERE artid='".$artid."'"));
    ________________
    Jacques
    jacques@gw-designs.co.za
    http://coding.biz.tm
    Come join and lets make it a place to learn all the noobies how to code
    __________________

    NEVER FORGET TO CLICK THE TANX BUTTON IF U LIKE WHAT IM SHARING OR HELPING WITH

    #2
    replace

    PHP Code:
    $countpics mysql_fetch_array(mysql_query("SELECT COUNT(id) FROM iwbf_cwart WHERE artid='".$artid."'")); 
    with

    PHP Code:
    $countpics mysql_fetch_array(mysql_query("SELECT COUNT(*) FROM iwbf_cwart WHERE artid='".$artid."'")); 
    also if u told us wat u wanted to get from the database nd wer in the database it stored
    Last edited by crazybrumi; 21.07.09, 22:52.
    Want something coded email me at sales@webnwaphost.com for a prices.




    Comment


      #3
      is it not something to do with the table name being wrong lol .
      most sites are ibwf_ not iwbf_

      just a thought .
      Wapchat4u


      Topsites4u

      Comment


        #4
        mmm now i see my error my database are ibwf tanx lol i were asleep yesterday
        ________________
        Jacques
        jacques@gw-designs.co.za
        http://coding.biz.tm
        Come join and lets make it a place to learn all the noobies how to code
        __________________

        NEVER FORGET TO CLICK THE TANX BUTTON IF U LIKE WHAT IM SHARING OR HELPING WITH

        Comment

        Working...
        X