diverz Posted November 24, 2007 Posted November 24, 2007 I really need pointingin the right direction..... the Manufacturers drop-down box has 'United Kingdom' as the first listing! the country selector when creating an account also has 'United Kingdom' as the default. I have been through the threads and found answers but afer checking my html_ouput file it reads: // Creates a pull-down list of countries function tep_get_country_list($name, $selected = '', $parameters = '') { $countries_array = array(array('id' => '', 'text' => PULL_DOWN_DEFAULT)); $countries = tep_get_countries(); for ($i=0, $n=sizeof($countries); $i<$n; $i++) { $countries_array[] = array('id' => $countries[$i]['countries_id'], 'text' => $countries[$i]['countries_name']); } return tep_draw_pull_down_menu($name, $countries_array, $selected, $parameters); } ?> Any ideas?
porpoise1954 Posted November 24, 2007 Posted November 24, 2007 I really need pointingin the right direction..... the Manufacturers drop-down box has 'United Kingdom' as the first listing! the country selector when creating an account also has 'United Kingdom' as the default. I have been through the threads and found answers but afer checking my html_ouput file it reads: // Creates a pull-down list of countries function tep_get_country_list($name, $selected = '', $parameters = '') { $countries_array = array(array('id' => '', 'text' => PULL_DOWN_DEFAULT)); $countries = tep_get_countries(); for ($i=0, $n=sizeof($countries); $i<$n; $i++) { $countries_array[] = array('id' => $countries[$i]['countries_id'], 'text' => $countries[$i]['countries_name']); } return tep_draw_pull_down_menu($name, $countries_array, $selected, $parameters); } ?> Any ideas? You have somehow managed to get the contents of > manufacturers < mixed up with the contents of > countries < within whichever file that code above is from The Manufacturers data has no mention of countries in it. * * * * * * * * * * * * * * * * * * * * * Porpoises are most happy when wet! \ _ \ _ \ _ \ _ \ _ \ _ \ _ \ _ \ _ \ _ \ _ \ _
Recommended Posts
Archived
This topic is now archived and is closed to further replies.