I was wondering if when calling my mySQL DB can a field not be requested.
I have this and it reterns all my information from the DB, but I want to leave out a field of information.
$query = "SELECT * FROM projects ORDER BY $order";
$result = mysql_query ($query);
Thanks.