require_once("server_settings.php"); $db_link = mysql_connect(SERVER, USERNAME, PASSWORD); if( !$db_link || !mysql_select_db(DB_NAME) ) { echo "ERROR connection to mysql SERVER"; die(); } //get news in desending order $profile_query = "SELECT * FROM profile ORDER BY profile_Name_Last"; $profile_resID = mysql_query($profile_query, $db_link); $profile_count = mysql_num_rows($profile_resID); ?>
|
|