I have a problem about a query.
I have a table with 4 column.
1) id (INT)
2) Special_Date (VARCHAR)
3) date_start (DATE)
4) date_finish (DATE)
In a page i use the function date() to have the date of today in a varible like this:
$today = date("Y-m-d");
I must create a query which select if the date of today is beteween the date_start and the date_finish.
Anyone can help me?