Advertisement
Guest User

Untitled

a guest
May 29th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. public function checkMail($mail){
  2.         /* Questa funzione conta se nel DB è gia presenta la mail in questione
  3.         * Se è presente la funzione torna 1 altrimenti torna 0 */
  4.         return DB::table('utenti')
  5.                             ->where('email', '=', $mail)
  6.                             ->count();
  7.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement