I have the following statement:
SELECT Username, UserDate > NOW() AS Past, UserDate < NOW() AS Future FROM User WHERE Username = 'Tom'
How can I display the total rows of Past and Future seperatly. All I can do with mysql_num_rows is display the total count not each indivdual count.