View Single Post
Old 04-23-2009, 10:54 PM   #1 (permalink)
smrtalex
The Wanderer
 
Join Date: Aug 2008
Posts: 8
Thanks: 0
smrtalex is on a distinguished road
Default Return array values

I have a script that creates an array that I want to validate. It creates the following array:

return array(
"first_name" => $vb["firstname"],
"last_name" => $vb["lastname"],
"email" => $vb["emailaddress"]
);

The variables:

$vb["firstname"]
$vb["lastname"]
$vb["emailaddress"]

are correct prior to the return array statement.

Any one know how I can validate/print the values in the newly created array to ensure that they are correct?
smrtalex is offline  
Reply With Quote