essayez
$result = mysql_query("SHOW COLUMNS FROM `table` LIKE 'fieldname'");
$exists = (mysql_num_rows($result))?TRUE:FALSE;
if($exists) {
// do your stuff
}
Pour plus :- MySQL, Vérifier si une colonne existe dans une table avec SQL
Remarque :- mysql_* est obsolète, utilisez mysqli
ou PDO