Nice,
But this should be in the coding section.
This is a discussion on how to make a userlist with php within the Habbo Tutorials forums, part of the Habbo Hotel category; Hello people, Here a tut how to make a user list with php. First whe just start with PHP Code: ...

Hello people,
Here a tut how to make a user list with php.
First whe just start with
really simple.PHP Code:<?php
?>
now whe make a query
yup really simplePHP Code:<?php
$userlist_query = mysql_query("SELECT * FROM users");
?>
now whe get the data as a object and whe order the users by id
so the query is done and now whe al get the data by a while like thisPHP Code:<?php
$userlist_query = mysql_query("SELECT * FROM users ORDER BY id DESC");
$get_users = mysql_fetch_object($userlist_query);
?>
that is al :)PHP Code:<?php
$userlist_query = mysql_query("SELECT * FROM users ORDER BY id DESC");
while($get_users = mysql_fetch_object($userlist_query)) {
echo $get_users->username;
echo '<br />';
}
?>
dont forget to include your config.php
it can i make a mistake i dont tested it ;x
it can i make a bad english text i am hollands
greats ,
Smiegles
Nice,
But this should be in the coding section.
no it is for UberCms and phpoenix <3
Oh i see didn't know that. Nice job.