Code: Select all
<?php
if (count($looparray1) > 0)
{
// There are records in the result array, loop 'em
foreach ($looparray1 as $arrayval1)
{
// ... Do something here
}
}
else
{
// ... Perform exception handling here
}
?>Moderator: General Moderators
Code: Select all
<?php
if (count($looparray1) > 0)
{
// There are records in the result array, loop 'em
foreach ($looparray1 as $arrayval1)
{
// ... Do something here
}
}
else
{
// ... Perform exception handling here
}
?>