I am not sure if it's me or some new set up they have on my server. I have the following line below where I get this error message.
$inactive = $db->sql_fetchrowset($db->sql_query (("SELECT COUNT(mid)FROM pol_active_starter INNER JOIN pol_pbp_starter ON (pol_active_starter.'phone_number' = pol_pbp_starter.'verrus_lot_id')WHERE pol_active_starter.'phone_number' = pol_pbp_starter.'verrus_lot_id' AND pol_pbp_starter.'date_start' != ".$today.")));
$today is defined as $today = (Date("l F d, Y"));
However, I have a line above it with the following and I get no error message.
$active = $db->sql_fetchrowset($db->sql_query (("SELECT COUNT(mid)FROM pol_active_starter INNER JOIN pol_pbp_starter ON (pol_active_starter.'phone_number' = pol_pbp_starter.'verrus_lot_id')WHERE pol_active_starter.'phone_number' = pol_pbp_starter.'verrus_lot_id' AND pol_pbp_starter.'date_start' = ".$today.")));
$today is defined as $today = (Date("l F d, Y"));
What the badonkey dunk and I doing wrong. I have been recoding and searching the internet for solutions for two days now and nothing seams to work. Please help.