Reputation: 171
I have 4 arrays for input errors like:
$username_errors=array();
$email_errors=array();
$password_errors=array();
$errors=array();
I want to merge all the arrays values in $errors
array and count if $errors
is empty then proceed.
Thanks in advance.
Upvotes: 0
Views: 40