Page is a not externally linkable
rocknbil - 3:58 pm on May 4, 2012 (gmt 0)
When you have problems like this, you need to learn to trace back from the endpoint and find the point of failure.
echo $maidenname; // No output, go back one step
while ($row=mysql_fetch_array($result)) {
$row[1]=$firstname;
$row[2]=$lastname;
$row[3]=$maidenname;
echo "Maiden " . $row[3] . '<br>';
}
In this example, if that last one is STILL blank, there's nothing in that field or you're setting the wrong value in the row index (e.g., maidenname might not be $row[3], it's $row[4] or something . . . )