HTML Php

Get Users

$conn=@mysql_connect("localhost", "userName", "password") or die("Could not connect");
$rs = @mysql_select_db("my_database", $conn) or die("Could not select database");
 
$sql="select * from users";
 
$rs=mysql_query($sql,$conn) or die("Could not execute query");
$list = "";
$list.="";
$list.="";
$list.="";
$list.="";
while($row= mysql_fetch_array($rs) )
{
   $list .= "";
   $list .= "";
   $list .= "";
   $list .= "";
   $list .= "";
   $list .= "";
}
$list .= "
First NameLast NameUser NamePassword
".$row["first_name"]."".$row["last_name"]."".$row["user_name"]."".$row["password"]."
";
echo($list);
?>