//***************************************************************************** // gallery_type.php -- lists all artists in gallery by type // Author - Daniel Stout // Date - 09/28/2004 // Contact - me@danielstout.net //***************************************************************************** //my includes------------------------------------------------- include("connections/connection.php"); //conncection string for database //--get/initialize vars--------------------------------------- $passedID = $HTTP_GET_VARS['id']; $action = $HTTP_GET_VARS['action']; $sorter = $HTTP_GET_VARS['sort']; //my SQL query strings---------------------------------------- $query_selectAllTypes = 'SELECT * FROM art_types ORDER BY theType ASC'; //get Num Rows for column splitting $result = mysql_query($query_selectAllTypes); $numTypes = mysql_num_rows($result); ?>
|
||||||||||||||||||||||||