View Single Post
ישן 28-04-06, 13:57   # 1
Press
חבר על
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: Here There, Anywhere
גיל: 33
הודעות: 900

Press לא מחובר  

בעיה בקוד הצגת הודעות אחרונות

שלום כולם,
יש לי את הקוד הבא שאמור להציג את ההודעות האחרונות מהפורומים:
PHP קוד:
<?php
mysql_connect
('localhost''******''******');
mysql_select_db('******');
$r mysql_query("SELECT t.id, t.topic_title
    FROM ibf_posts p, ibf_topics t, ibf_forums f
    WHERE f.auth LIKE '0%' AND t.forum_id = f.id AND p.id = t.last_post_id
    ORDER BY p.post_time DESC LIMIT 10"
);
echo 
'<ul>';
while ( 
$out mysql_fetch_array($r) ) {
    
    echo 
'<li><a href="index.php?showtopic='.$out['id'].'">';
    echo 
htmlspecialchars($out['topic_title']).'</a></li>';
    
}
echo 
'</ul>';
?>
זה מציג לי את השגיאה הבאה:
קוד:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/sport/domains/***/public_html/forum/123.php on line 9
תודה מראש.

בברכה,
עידו דרור
__________________
Press - עידו
I'm Proud To Be Jewish, We All Should Be Proud

Last edited by Press; 28-04-06 at 14:10..
  Reply With Quote