Mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in - problema
Amigos no se la razón por que en el xamp.. Anda todo bien la página que estoy haciendo, al momento de subirlo y crear las base de datos me sale este error:
mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in
mi codigo es este
<?php
// Error reporting:
error_reporting(E_ALL^E_NOTICE);
require "connect.php";
require "banner.class.php";
$bannerResult = mysql_query("SELECT * FROM platodia");
$banners = array();
while($row=mysql_fetch_assoc($bannerResult))
{
$banners[] = new Banner($row);
}
// Randomizing the $banners array:
shuffle($banners);
// Splitting the banners array into smaller arrays with 4 banners each:
$bannerGroups = array_chunk($banners,10000);
?>
<?php
// Error reporting:
error_reporting(E_ALL^E_NOTICE);
require "banner.class2.php";
$bannerResult = mysql_query("SELECT * FROM slider");
$banners = array();
while($row=mysql_fetch_assoc($bannerResult))
{
$banners[] = new slider($row);
}
// Randomizing the $banners array:
shuffle($banners);
// Splitting the banners array into smaller arrays with 4 banners each:
$bannerGroupsa = array_chunk($banners,10000);
?>
Aquí hago 2 consultar las cuales uno es para el slider de la página y el otro es para una opción de plato del día.
Aquí la página web para que vean el error
www.restaurantelmijano.com