I want to retrieve all columns that are in particular table.I dont want to get the values of the columns but the column names themselves.
Lets say:
<?php mysql_query("SELECT * FROM tablename"); ?>
is no good
I need smth like "SELECT all column names FROM tablename";