if you say you don't know much, maybe you are looking for something like this ;)
hth
toby
\n";
foreach($options AS $key => $display)
{
echo " $display\n";
}
echo "\n";
}
//get users from db
$query = " SELECT * FROM users";
$result = mysql_query($query);
w
Yes it's possible. I believe there's a way to do it with PEAR also but I've never done it that way before. I always do:
---
--- Please Choose a Username ---
// retrieve a list of usernames from the DB
$results = mysql_query("SELECT userID, username FROM users")
2 matches
Mail list logo