본문 바로가기
MySql

MySQL cakephp db에서 데이터 가져 오기

by 베이스 공부 2021. 1. 12.
반응형

저는 cakephp를 처음 사용합니다. cakephp에서 SQL 쿼리 아래에 작성하는 방법

$sql = "SELECT * FROM `user` WHERE `email` = '" . $email . "' AND  `password` = '" . $password . "'";

$result = mysql_query($sql, $connection);

while($fetchdata = mysql_fetch_assoc($result)){
    echo $fetchdata['name'];
}

제발 도와주세요 감사

 

해결 방법

 

검색어 :

<?php

 $this->loadmodel('User');
 $result = $this->User->find('first',array('conditions' => array('email' => $email,  
 'password' => $password)));
 foreach($result as $row)
 {
   //do whatever you want to do

 }
?>

 

참조 페이지 https://stackoverflow.com/questions/15021271

 

 

반응형

댓글