• "; // Step 3.3 - Date Arrays. DO NOT EDIT MONTH OR DAY // Months $months_array=array("01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"); // Days $days_array=array("00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31"); // Years - edit this to include the years your band has been around, and add the next year to it. $years_array=array("1999", "2000", "2001", "2002", "2003", "2004", "2005", "2006"); // Step 3.4 - function to create links out of link-like text function addLinks($string) { $string = preg_replace("/(?\s]|$))/i", "$1", $string); return preg_replace("/href=\"www/i", "href=\"http://www", $string); } // Step 3.5 - define a variable containing the current page address $current_url = $_SERVER['REQUEST_URI']; // Step 3.6 - The year this band started $start_year = "1999"; // Step 3.7 - States Arrays $us_states_array=array("AK", "AL", "AR", "AZ", "CA", "CO", "CT", "DC", "DE", "FL", "GA", "HI", "IA", "ID", "IL", "IN", "KS", "KY", "LA", "MA", "MD", "ME", "MI", "MN", "MO", "MS", "MT", "NC", "ND", "NE", "NH", "NJ", "NM", "NV", "NY", "OH", "OK", "OR", "PA", "RI", "SC", "SD", "TN", "TX", "UT", "VA", "VT", "WA", "WI", "WV", "WY"); $canada_provinces_array=array("AB", "BC", "MB", "NB", "NL", "NT", "NS", "NU", "ON", "PE", "QC", "YT"); // Step 3.8 - This year $this_year = date("Y"); ?>