Advertisement
Sonic3R

Untitled

Aug 2nd, 2011
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2. include('include/Utilizator.php');
  3. $res="";
  4. $obiect=new Utilizator();
  5.  
  6. if(isset($_POST['email_problem']))
  7.     {
  8.         $email=trim($_POST['email_problem']);
  9.         $res=$obiect->recovery($email);
  10.     }
  11. else
  12.     {
  13.         $res="Date netrimise";
  14.     }
  15. echo $res;
  16. $obiect->__destruct();
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement