I need some help with a project I'm working on. There's a table with 2 dates: date1 and date2 (easier)
Now I need to show all rows where the current date is between date1 and date2. What I have so far is:
$date = date(Y-m-d);
$sql = 'SELECT * FROM boekingen WHERE "$date" BETWEEN date1 AND date2';
but this doesn't work. Although if I replace "$date"
with 2017-01-06 it does work. Now how do I solve this problem?
Thanks in advance!
You need to put quotes around the argument to
date()
:And you need to wrap the string you assign to
$sql
in double quotes, otherwise the$date
variable won't be expanded.What is the difference between single-quoted and double-quoted strings in PHP?