mysql_fetch_array():提供的参数不是有效的MySQL结果资源

时间:2012-02-04 16:31:50

标签: mysql web-hosting

  

可能重复:
  Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result
  Warning: mysql_fetch_* expects parameter 1 to be resource, boolean given error

有点奇怪。我没有在localhost或其他主机上传的问题,但在这个新的主机中,一直说这个警告,它将无法正常工作

<?php 
    while($row_get_albums = mysql_fetch_array($result_get_albums))
    {
        $album_counter++;
        if ($album_counter > 1)
        {
            ?>
            <span style="float:left;">&nbsp;/&nbsp;</span><span class="album-name" id="<?php echo $row_get_albums["album"];?>" onclick="load_images(this.id)"><span style="float:left;"></span>                         
            <?php 
        } 
        else 
        { 
            ?>
            <span class="album-name" id="<?php echo $row_get_albums["album"];?>" onclick="load_images(this.id)"> 
            <?php 
        }
        echo $row_get_albums["album"];
        ?>
        </span>
        <?php
    }
?>

你的想法是什么?

0 个答案:

没有答案