View Single Post
Old 12-06-2012, 07:37 PM   PM User | #8
Fou-Lu
God Emperor


 
Fou-Lu's Avatar
 
Join Date: Sep 2002
Location: Saskatoon, Saskatchewan
Posts: 15,650
Thanks: 4
Thanked 2,451 Times in 2,420 Posts
Fou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to all
Arrays are a complex datatype; they cannot be directly printed.
PHP Code:
if (!empty($aErrorMessages))
{
    print(
'The following errors occurred: ');
    foreach (
$aErrorMessages AS $error)
    {
        print 
PHP_EOL $error;
    }
}
else
{
    
// all good.

Fou-Lu is offline   Reply With Quote
Users who have thanked Fou-Lu for this post:
otty (12-06-2012)