Mmmm...
OK, I get what you're doing and inserted the code like so:
$Query01 = "SELECT * FROM `CustomerSignups` WHERE `Id` = '$_GET[id]'";
$Result01 = mysql_query($Query01) or die("Error 01: " . mysql_error());
while ($get_info = mysql_fetch_assoc($Result01))
{
$get_info[] = $get_info;
}
foreach ($get_info as $key => $value)
{
echo "<p>$key - $value</p>";
}
}
But I get this:
Warning: Invalid argument supplied for foreach() in /home/... : eval()'d code on line 18
This is line 18:
foreach ($get_info as $key => $value)
But I can't see where the problem is.
Obviously I'm going to perservere with this as my old way of doing it, calling out each table field individually is simply a waste of time and won't include new table fields.