Hi all,
I am using cakePHP 1.26.
I am designing a Select Tag with a few Options, and each of the options will contain multiple values.
Yet, there is not only one way to do it:
Method 1:
<select name="">
<option value="[0,1,2,3]">Option one</option>
</select>
Method 2:
<select name="">
<option value="{foo:'bar',one:'two'}">Option two</option>
</select>
Please advise which of the methods is the best to work with cakePHP.