After a simple query that is successful,
$sql = "SELECT * FROM mytable" ;
$result = mysql_query ( $sql ) ;
is there a way to "drop" a specified column from the $result resource? IOW, the $result consisted previously of 8 fields, but afterwards contains of only 7.
Thanks.