Hi, I need to get a list of usernames from a mysql db and then put them in a select form a different option for each username, if someone could help that would be great thanks
well why not do a while loop on the db
echo"<select name=username>"; //connect to table db etc while($r=mysql_fetch_array($result)){ echo"<option value=$r[username]>$r[username"; }
im not sure is that what you are wanting
thanks thats what i wanted, i suck at doing loops me not very good with them