Hi, I'm using this query in my script:
$query = "select * from Birthdays where Date >= '".$start_date."' AND Date <= '".$end_date."' ";
But it doesnt work. It says that the result is not a valid mysql result resource.
it works in phpMyAdmin when I use the following query:
select * from Birthdays where Date >= '20030801' AND Date <= '20040201'
does anyone know why it isnt working in my script?
cheers,
Jason