Thread
:
breaking down an array from a form
View Single Post
07-08-2004, 03:57 AM
#
8
(
permalink
)
idx
Senior Grasshopper
Join Date: Jun 2003
Location: FL
Posts: 317
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
View Public Profile
Visit idx's homepage!
Find More Posts by idx