how come when I do this:
while ( $row = mysql_fetch_array($result)) {
$Fname = $row["Fname"];
$Lname = $row["Lname"];
$Email = $row["Email"];
$Country = $row["Country"];
$Username = $row["Username"];
$Disabled = $row["Disabled"];
$info[$count][0] = $Fname;
$info[$count][1] = $Lname;
$info[$count][2] = $Email;
$info[$count][3] = $Country;
$info[$count][4] = $Username;
$info[$count][5] = $Disabled;
$count++;
}
$max = "$count";
echo("$max");
$count = "0";
echo("$info[$count][0]");
echo("$info[$count][1]");
echo("$info[$count][2]");
echo("$info[$count][3]");
echo("$info[$count][4]");
echo("$info[$count][5]");
I get :
5Array[0]Array[1]Array[2]Array[3]Array[4]Array[5]
How come it won't give me the actual values here?