I use mysql_fetch_array and get the correct row. In the simple code below:
$result = mysql_query( “SELECT * from Members where Tail_Num=‘N1074Y’” );
while ($a_row = mysql_fetch_array( $result ) ) {
$Name = $a_row[‘Name’];
The field contains “Firstname Lastname”. But when I look at the value of $Name, it is only “Firstname”.
If I print $a_row[‘Name’], then I get “Firstname Lastname”.
It appears that spaces in a text string truncate the assignment. How do I work around this?