Mysql php ile güncel sorgulayabilir

2 Cevap php

Böyle biçimlendirilmiş bir mysql tabloda bir tarih alanı var: Ymd.

I want to export every post that has a date between $fromDate and all the way to $toDate I am sure its easy but now i am totaly blocked from ideas.

Eğer yardımcı olur ben CodeIgniter'ı kullanıyorum.

Best Regards Audun

2 Cevap

($ FromDate daki tarih biçimini varsayarak ve $ ToDate sizin mysql sütunun tarih biçimini maç) buna benzer bir sorgu oluşturma ve mysql_query geçirmeden deneyin

<?

$query="SELECT * FROM table WHERE date BETWEEN '$fromDate' AND '$toDate'";

?>

Active Record yaklaşık CodeIgniter belgelerinde http://codeigniter.com/user_guide/database/active_record.html, başlığı "$ this-> db-> ();" ile bir alt bölüm var.

You can use comparison signs (like !=, <, >, <= and >=) just after the name of the column on which condition(s) is checked. For instance :
$this->db->where('id <', $id);

$array = array('name !=' => $name, 'id <' => $id, 'date >' => $date);
$this->db->where($array);