Good,
Looking at this query:
$sql = mysql_query("select A, B, C, D from table");
$row_sql = mysql_fetch_assoc($sql);
I want to get column A and put all values in an array:
$var = array('value1','value2','value3','value4');
How best to do this?
Thank you.