Why does this…
[php]$record = mysql_query(“SELECT status FROM accounts WHERE confno_c=’$conf’”)
$status = mysql_fetch_array($record);
print_r($status);[/php]
result in this…
[table]
[tr]
[td]Array ( [ 0 ] => Closed [status] => Closed )[/td]
[/tr]
[/table]
instead of what I want…
[table]
[tr]
[td]Closed[/td]
[/tr]
[/table]
What do I need to do to get “Closed” instead of “Array…”?