Вопрос

Within my Smarty template I have a series of checkboxes that are named "region_codes", which contain a value of "GB", "US", "EU" etc, etc...

This is the code in my Smarty template:

<input type="checkbox" name="region_codes[]" value="{$region_code}" {if isset($smarty.request.region_codes.$region_code)}checked="yes"{/if} />

As you can see from the code snippet, I have attempted to detect whether the a checkbox has been ticked when the form is submitted. How is this done in Smarty, as the above code does not work. It doesn't throw an error, but it does not see the submitted value.

EDIT: When I print out the region_codes parameter that is coming through request from within my Smarty template I get this:

[region_codes] => Array ( [0] => EU [1] => RW )

Это было полезно?

Решение

{if $region_code|in_array:$smarty.request.region_codes}checked="yes"{/if}

Другие советы

Change the condition to

{if $smarty.request.region_codes|in_array:$region_code}checked="yes"{/if}
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top