묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
Mysql과 관련한 에러인데 이것 해결방법 아시는분...
2003.12.16 18:39
<?
$dbconnect=mysql_connect('localhost','id들어갈자리','password들어갈자리') or die ("mysql에 연결할 수 없습니다.");
mysql_select_db('db명들어갈자리',$dbconnect);
mysql_query("delete from atple_admessages1 where adcount=0",$dbconnect);
//$query=mysql_query("select * from atple_admessages1 order by num desc",$dbconnect);
$query2=mysql_query("select * from atple_admessages1 order by rand() limit 3",$dbconnect);
if($totalad=='0')
{
echo("표시할 내용이 없습니다.");
exit;}
while($row=mysql_fetch_array($query2))
{
$admessage=htmlspecialchars($admessage);
mysql_query("update atple_admessages1 set adcount=$row[adcount]-1 where num=$no",$dbconnect);
echo("$row[admessage], $row[adaddress]<br>");
}
?>
물론 위에 디비 커넥트 하는건 기입다 했습니다.
에러 내용으로는
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /www/atple/_php/admessage_bar.php on line 15
입니다.
해결책 아시는 분은 따뜻한 답변좀;; ㅠ.ㅠ
$dbconnect=mysql_connect('localhost','id들어갈자리','password들어갈자리') or die ("mysql에 연결할 수 없습니다.");
mysql_select_db('db명들어갈자리',$dbconnect);
mysql_query("delete from atple_admessages1 where adcount=0",$dbconnect);
//$query=mysql_query("select * from atple_admessages1 order by num desc",$dbconnect);
$query2=mysql_query("select * from atple_admessages1 order by rand() limit 3",$dbconnect);
if($totalad=='0')
{
echo("표시할 내용이 없습니다.");
exit;}
while($row=mysql_fetch_array($query2))
{
$admessage=htmlspecialchars($admessage);
mysql_query("update atple_admessages1 set adcount=$row[adcount]-1 where num=$no",$dbconnect);
echo("$row[admessage], $row[adaddress]<br>");
}
?>
물론 위에 디비 커넥트 하는건 기입다 했습니다.
에러 내용으로는
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /www/atple/_php/admessage_bar.php on line 15
입니다.
해결책 아시는 분은 따뜻한 답변좀;; ㅠ.ㅠ