View Single Post
Old 07-08-2004, 03:57 AM   #8 (permalink)
idx
Senior Grasshopper
 
idx's Avatar
 
Join Date: Jun 2003
Location: FL
Posts: 317
idx is on a distinguished road
You may want to add a small check before the loop.
eg:

PHP Code:

if (sizeof($shows) > 0) {
   foreach(
$shows as $each){
      echo 
$each " is checked. <br>";
   }

idx is offline   Reply With Quote