Mega Code Archive
Get Users from users table
Get Users
";
$list.="First Name | ";
$list.="Last Name | ";
$list.="User Name | ";
$list.="Password |
";
while($row= mysql_fetch_array($rs) )
{
$list .= "";
$list .= "".$row["first_name"]." | ";
$list .= "".$row["last_name"]." | ";
$list .= "".$row["user_name"]." | ";
$list .= "".$row["password"]." | ";
$list .= "
";
}
$list .= "";
echo($list);
?>