header('Content-Type: text/html; charset=utf-8');
include("localconnection.php");
%result = $mysqli->query("SELECT * from member_profile");
$num_rows = mysqli_num_rows($result);
$row=mysqli_fetch_row($result);
for($i=1;$i<=$num_rows;$i++)
{
echo $row[0]." ".$row[1]." ".$row[2]." ".$row[3]." ".$row[4]."
";
}
?>