"; $sql = "SELECT * FROM people"; $result = mysql_query($sql); $numrows=mysql_num_rows($result); print "

"; print "

Return to Main Page


"; echo "

The $numrows people who are currently attending are



"; print "

"; for ($count=1; $row = mysql_fetch_row($result); ++$count) print " $row[3] ($row[1])

"; include "footer.inc"; ?>