Example #1
0
 function check_if_username_or_email_exists($param)
 {
     $user_obj = new User();
     if ($param != "") {
         echo $user_obj->check_if_username_or_email_exists($param);
     }
     exit;
 }