Fabian Muermann wrote:
HI !
i want to get some records from a database.
in the where clouse i write:
WHERE schenkung.datum)>=$von AND schenkung.datum<=$bis
so in the access db i have a column called "datum", the type is date ...
and thats the problem.
the variables "von" and "bis" are for example: "01.01.1999" or "12.31.1999".
i have no idea how to do that ... 🙁
$von1 = strtotime ($von)
$bis1 = strtotime ($bis)
While (schenkung.datum>=$von && schenkung.datum<=$bis) {
}
Is that what you wanted?