A bit of history first. We moved a site from one hosting provider(hostexcellence) to another (1and1) because the client wanted to get their own hosting seperate from our reseller hosting.
The site is working fine except for one thing.
For some reason or another specific queries that are done in the root folder are not working, but work perfectly fine in a subfolder. Also to note on top of that, if I do a query which should return multiple results it works fine, but if I do a query that should return a single line item it returns an empty set.
Here is one of the queries
'SELECT `specials`.*, DATE_FORMAT(startdate, "%d %b %Y") AS sdate, DATE_FORMAT(enddate, "%d %b %Y") AS edate FROM `specials` WHERE enddate > NOW() and active = 1'
But then if I run a similar query on a different table it works fine
'SELECT *, DATE_FORMAT(startdate, "%d %b %Y") AS sdate, DATE_FORMAT(enddate, "%d %b %Y") AS edate FROM events WHERE enddate >= NOW() AND active = 1'
As I mentioned above, these do not work in the root folder of the website but work in any subfolder.
mysql_error() does not return anything. It just returns an empty result.
Any ideas, as I have been trying to trace the error for the past two days.
It is running on an apache server if that makes any difference, and there is no htaccess file in that directory at the moment.
Thanks in advance
edit
I tried all of the methods mentioned below, and I retried the queries separate from that page they work fine on other pages and in phpmyadmin. So I am slightly at wits end.

open_basedirPHP config option? – s.webbandit Apr 19 '12 at 10:05ini_set('display_errors', 1); ini_set('log_errors', 1); ini_set('error_log', dirname(__FILE__) . '/error_log.txt'); error_reporting(E_ALL);– Benoit E. LeBlanc Apr 19 '12 at 11:08