私はここで明白な何かを見ていませんか、これを機能させることができないようです...
if (($_GET['date']=='today'))
{
$today = date('Y-m-d', strtotime('today'));
$query = "SELECT * FROM contacts WHERE (contacttype = 'Buyer' OR "
. "contacttype = 'Seller' OR contacttype = 'Buyer / Seller' OR "
. "contacttype = 'Investor') AND date = '$today' ORDER BY date DESC";
}
ありがとう!