1 2 3 4 5 6 7
| function ClubValide($club) {
if (preg_match('#^([a|A][0-9]{6}|[0-9]{3,4})\s[:]\s[\w\'\s.-]{4,}$#', $club)) { return('ok'); }
else { return('nok'); }
}
// ----- Conditions de validité
if ($post_concours_type=='concours' && ($post_chien_club=='None' || ClubValide($post_chien_club)=='nok')) { $err_post='oui'; $err_post_chien_club='oui'; $array_err_post[]='post_chien_club'; }
else if ($post_concours_type=='tcs' && $post_chien_club!='None' && ClubValide($post_chien_club)=='nok') { $err_post='oui'; $err_post_chien_club='oui'; $array_err_post[]='post_chien_club'; } |