ok guys.. first off i would like to say thanks for the wonderful forum. it has been a major help on all this, especially since i started coding in this language(not even sure what i code in lol) this year

ok now on to the ?...
ok we are running a forumsite,
www.ok-speed.net and have a new portal page comin up soon. it can be seen @
www.ok-speed.net/newd.php as you can see from there it has a few goodies on it, but in particular i want to ask how to show events for a particular month. right now i have this code,
PHP Code:
<?
$events = $db->query("select * from event order by dateline_from desc limit 12");
if ($db->num_rows($events))
{
while ($ev = $db->fetch_array($events))
{
$news="";
$new_date = vbdate('m-d-Y', $ev['dateline_from'], false, false);
$news .= "<B>".$new_date."</B>: ";
$news .= $ev['title']."<BR>";
echo "<A class='text-9white' target='_new' HREF=\"/forums/calendar.php?do=getinfo&e=$ev[eventid]&day=$new_date&c=1\"><FONT SIZE=2 FACE=ARIAL>$news</FONT></A>";
}
}
?>
like i said, that one only pulls the last posted event.. and orders them that way. what i need is for it to check what the current month is, then post the events for that month(not including birthdays). much appreciation in advance.