is there anyway to limit the number of posts displayed?
[code]<?php
$sql = “SELECT * FROM forum”;
$result = $mysqli->query($sql);
while($row = $result->fetch_assoc()) {
echo $row[‘user’].’, ‘.$row[‘date’].’
‘;
echo $row[‘message’].’
’;
echo '------------------------
';
}
?>[/code]