If i've got the following array structure:
$a = array(
0 => array(
'name'=>'moo',
'age'=>23
),
1 => array(
'name'=>'moo',
'age'=>23
),
2 => array(
'name'=>'moo',
'age'=>23
),
);
What is the best way for me validate $a and all the child array items so that i receive the identical array above in my action?
Cheers,
Jeramy Wenserit (E_mE)
e: evercl...@gmail.com
w: www.xylesoft.co.uk
_______________________________________________
users mailing list
us...@lists.agavi.org
http://lists.agavi.org/mailman/listinfo/users
Perfect, great thank you :)
Cheers,
Jeramy