The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#5
|
|||
|
|||
![]()
Use a query like "SELECT post,date FROM posts ORDER BY date", and loop through it, like
Code:
$curdate="" while ($data = mysql_fetch_object($queryresults)) { if ($data->date != $curdate) { echo '<br>'.$data->date.'<br>'; $curdate = $data->date; } echo $data->post.'<br>'; } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|