<?php
$_countries
= Mage::getResourceModel(
'directory/country_collection'
)
->loadData()
->toOptionArray(false) ?>
<?php
if
(
count
(
$_countries
) > 0): ?>
<select name=
"country"
id=
"country"
>
<option value=
""
>-- Please Select --</option>
<?php
foreach
(
$_countries
as
$_country
): ?>
<option value=
"<?php echo $_country['value'] ?>"
>
<?php
echo
$_country
[
'label'
] ?>
</option>
<?php
endforeach
; ?>
</select>
<?php
endif
; ?>
Revisions
- December 26, 2014 @ 15:03:54 [Current Revision] by admin
- December 26, 2014 @ 15:03:54 by admin
No comments yet.