Hi
My current form is as follows
{exp:safecracker channel="fixtures"
return="fixtures/thanks_row"
datepicker="no"
}
<fieldset>
<input type="hidden" name="allow_comments" value="n" />
<input type="hidden" name="status" value="Pending" />
<table cellspacing="0">
<tr>
<td>
<input type="text" name="entry_date" id="entry_date" value="{current_time format='%Y-%m-%d %H:%i'}" maxlength="23" size="16" />
<input type="text" name="title" id="title" value="{title}" maxlength="100">
<input type="hidden" name="url_title" id="url_title" value="{url_title}" maxlength="75" />
<select name="category[]">
<option value="" selected="selected">--</option>
{exp:channel:categories cache="yes" channel="seasons" refresh="60" style="linear"}
{if parent_id=='0'}<optgroup label="{category_name}">
{if:else}<option value="{category_id}">{category_name}
{/if}
{if parent_id=='0'}</optgroup>
{if:else}</option>
{/if}
{/exp:channel:categories}
</select>
</td>
</tr>
<tr>
<td>
{field:fixture_home_team} @ {field:fixture_away_team}
<button type="submit" name="submit">Submit</button>
</td>
</tr>
</table>
</fieldset>
{/exp:safecracker}
I would like to have both the title and the url title dynamically added using the {field:fixture_home_team} and {field:fixture_away_team} is that possible.
Thanks