phpSensei Posted February 7, 2008 Share Posted February 7, 2008 No problem, if you want a little code help, use: <?php $query = mysql_query("SELECT * FROM `users` ORDER BY `date_joined` DESC"); while($row = mysql_fetch_array($query)){ echo $row['username'] . "<br>"; } ?> Link to comment https://forums.phpfreaks.com/topic/89905-forms/page/2/#findComment-461076 Share on other sites More sharing options...
TarsierSpectral Posted February 7, 2008 Author Share Posted February 7, 2008 No problem, if you want a little code help, use: <?php $query = mysql_query("SELECT * FROM `users` ORDER BY `date_joined` DESC"); while($row = mysql_fetch_array($query)){ echo $row['username'] . "<br>"; } ?> Thanks for that. I might need more code help later on, so I might be back. Thanks for your help Link to comment https://forums.phpfreaks.com/topic/89905-forms/page/2/#findComment-461117 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.