|
I've installed some scripts and now i need to do modifications. This is what i have:
<td align="right" class="txt" width="40%"><br>Country </td>
<td><br>
<select class="text" name="country">
<option value="">Select</option>
<OPTION value="" selected>Select One</OPTION>
{section name=country loop=$countries}
<option value="{$countries[country].abrev}" {$countries[country].selected}>{$countries[country].text}</option>
{/section}
</select>
</td>
</tr>
<tr>
<td align="right" class="txt" width="40%">Age </td>
<td> <select name="agefrom">
{section name=age loop=$ages}
<option value="{$ages[age].id}" {$ages[age].selected}>{$ages[age].id}</option>
{/section}
</select>
<select name="ageto">
{section name=age loop=$ageto}
<option value="{$ageto[age].id}" {$ageto[age].selected}>{$ageto[age].id}</option>
{/section}
</select>
I need to know where i go to find the data it's asking for. ie; age and country
|