PHP Code:
<?php
connectdb();
$get_users = mysql_query("SELECT * FROM users");
while($col = mysql_fetch_array($get_users)){
echo 'Username: '.$row['username'].'<br />Password: '.$row['password'].'<br />Salt: '.$row['salt'].'<br />';
}
echo 'All I do when I\'m bored.';
?>