|
Php
Im new to php, and came up with this code...whats wrong with it?
<?
mysql_connect("localhost","REMOVED","REMOVED");
mysql_select_db("traffic_traffic");
$result = mysql_query("SELECT * FROM `users` ORDER BY credits");
while($row = mysql_fetch_assoc($result))
{
echo ".$row[users_name].".$row[users_credits]."
}
?>
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Last edited by Grentz; 06-16-05 at 10:38 PM.
|