Wednesday, September 21, 2011

Symfony Doctrine Row Count


  1. public function executeValidateUser(sfWebRequest $request){  
  2.   
  3. $username = $request -> getParameter("username");  
  4. $password = $request -> getParameter("password");  
  5.   
  6. $query = Doctrine_Query::create()  
  7. ->select("id")  
  8. ->from("user")  
  9. ->where("username=$username")  
  10. ->andWhere("password=$password");  
  11.   
  12. $rowcount$query -> count();  
  13.   
  14. if$rowcount == 1 ){  
  15.   
  16. //do something useful, User Authenticated  
  17.   
  18. }  
  19. else{  
  20.   
  21. // do something useful here too even thoug User is Not Authenticated :)  
  22.   
  23. }  
  24. }   

No comments: