Well, I don't know anything about ASP as I only learned PHP, but I just read it off php.net
Anyway - I do have a database already connected as I try to make the SQL-statement, but you want it to be like this?
$query = "select * from news WHERE DATEDIFF(newsDate,NOW()) < 90 order by newsDate desc";
$result = mysql_query($query) or die("".mysql_errno()." Error: ".mysql_error());
Anyway - the above doesn't work as it gives me this error-message:
1064 Error: You have an error in your SQL syntax near '(newsDate,NOW()) < 90 order by newsDate desc' at line 1
Any help is appreciated