If you want it to list it with the date, and not show events which have already passed, use this code
Code:
<?php
$host = 'localhost';
$dbUser = 'username';
$dbPass = 'pass';
$db = 'database';
mysql_connect("$host", "$dbUser", "$dbPass") or die(mysql_error());
mysql_select_db("$db") or die(mysql_error());
$result = mysql_query("SELECT * FROM vb35_event where dateline_from >= UNIX_TIMESTAMP() order by dateline_from ASC LIMIT 10" ) or die(mysql_error());
while($row = mysql_fetch_array( $result )) {
$dateevent = date('M j, Y', $row[dateline_from]);
print "$dateevent - <a href='http://WWW.DOMAIN.COM/FORUMS/calendar.php?do=getinfo&e=" . $row['eventid'] . "&c=1'>". $row['title'] . "</a><br>" ;
}
?>