'; echo "\n\n"; $i=0; $community_radio_i=0; //First, iterate for COMMUNITY RADIO while ($i < $num_row) { // GET STATION TYPE $station_type=mysql_result($result,$i,"station_type"); // BEGIN TYPE TAG FOR COMMUNITY RADIO ON FIRST ITERATION if (strcmp($station_type, "Community Radio") == 0) { if ($community_radio_i==0) { echo " \n"; $community_radio_i++; } echo " \n"; } // END TYPE TAG $i++; } // END TYPE TAG FOR COMMUNITY RADIO echo " \n"; //Next, iterate for TALK RADIO $i=0; $talk_radio_i=0; while ($i < $num_row) { // GET STATION TYPE $station_type=mysql_result($result,$i,"station_type"); // BEGIN TYPE TAG FOR TALK RADIO ON FIRST ITERATION if (strcmp($station_type, "Talk Radio") == 0) { if ($talk_radio_i==0) { echo " \n"; $talk_radio_i++; } echo " \n"; } // END TYPE TAG $i++; } // END TYPE TAG FOR TALK RADIO echo " \n"; echo ""; mysql_free_result($result); ?>