I am trying to have my form option Value display my user information I get from the DB.
Right now my Form keep coming up blank. Everything seems clear to me. Is there something I am overseeing?
I am getting no error.
<?php
$users = mysql_query(" SELECT usersLOGIN from users");
$list = mysql_fetch_array ($users);
$rows = mysql_num_rows($users);
?>
<select name="status" size="1">
<option value=""></option>
<?php
function process($list)
{
for($i=0;$i<$rows($list);$i++) {
echo "<option value='($list[$i])'> ($list[$i]) </option> ";
}
}
?>