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