Check out this MySQL
Query and then I\'ll show you what I really want it to do...
mysql_query(\"
SELECT * FROM Drinks WHERE
email=\'$Email\'
Your question is about the operator precedences in mysql and Alex has shown you how to "override" the precedence with parentheses.
But on a side note, if your column date
is of the type Date you can use MySQL's date and time functions to fetch the records of the last seven days, like e.g.
SELECT
*
FROM
Drinks
WHERE
email='$Email'
AND date >= Now()-Interval 7 day
(or maybe Curdate() instead of Now())