Código PHP:
<?
include("config.php");
$selectQuestion = mysql_query("SELECT * FROM sn_questions LIMIT 10 ORDER BY id");
?>
<html>
<head>
<title>Si No</title>
</head>
<body>
<?
while ($rowQuestion = mysql_fetch_array($selectQuestion)) {
echo "$rowQuestion[question]<br>";
}
?>
</body>
</html>
Desde ya, muchas gracias.
[EDIT]
Ya lo solucioné, aparentemente esta versión de PHP exige que se utilice la etiqueta completa.