Hi all I am experiencing the following error.
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean givenit refers to line 94 which is the while loop start point.
Thanks in advance
D
<?php
$x=0;
$remainder=0;
$image_value = array();
$partners_id = array();
$description_value = array();
$url_value= array();
$image_filename_value = array();
$case_study_id = array();
$CaseStudyTitle = array();
$active = array();
$show_in_banner = array();
while($row = mysql_fetch_array($result))
{
//echo $row{'web_customised_partners_id'};
$partners_id[]= $row['web_customised_partners_id'];
$image_value[] = $row['image_id'];
$image_filename_value[] = $row['image_filename'];
$description_value[] = $row['description'];
$url_value[] = $row['url'];
$case_study_id[] = $row['web_customised_partners_case_study_id'];
$CaseStudyTitle[] = $row['CaseStudyTitle'];
$active[] = $row['active'];
$show_in_banner[]=$row['show_in_banner'];
}