I want to select record based on the current date in codeigniter , but this query fails. -


i have select records based on current system date . if hard code date value , query works fine if modify to

$date1=date('y-m-d h:i:s'); $res=$this->db_model->sql("select * vbl_assignment inner join vbl_student_course on vbl_student_course.course_id = vbl_assignment.course_id inner join vbl_course on vbl_assignment.course_id = vbl_course.course_id vbl_student_course.student_id =".$this->session->userdata('loggedinstudent')->student_id." , vbl_assignment.accept_until_date > ".$date1);   

query fails. idea worng here.

try:

$res=$this->db->query("select * vbl_assignment inner join vbl_student_course on vbl_student_course.course_id = vbl_assignment.course_id inner join vbl_course on vbl_assignment.course_id = vbl_course.course_id vbl_student_course.student_id =".$this->session->userdata('loggedinstudent')->student_id." , vbl_assignment.accept_until_date > '".$date1."'"); 

Comments

Popular posts from this blog

c# - SelectList with Dictionary, add values to the Dictionary after it's assigned to SelectList -

how can i manage url using .htaccess in php? -

ios - I get the error Property '...' not found on object of type '...' -