I am having a table that contains 61 columns.
In the select statement I want to fetch all the columns except two of them.
How can I do it?
Here is the code that fetches data from table:
function hotelfeature($id)
{
global $conn;
$selFeature = "select * from hotelpropertyoptioninfo where Hotel_id = " .$id;
$resultFeature = mysql_query($selFeature,$conn);
$rowFeature = mysql_fetch_assoc($resultFeature);
return $rowFeature;
}