我有一个.tpl
文件,其中包含包含添加和编辑功能的表单数据。我想检查用户是否ADD
需要EDIT
检查查询字符串。为此,我想使用$_SERVER
,$_POST
并将$_GET
数组变量放入 .tpl 文件中。
我像这样直接使用但不工作:
{$_SERVER}
{if $step_info->actions eq ""}
<tr>
<td><textArea name="step_details[]"></textArea></td>
<td><textArea name="expected_results[]"></textArea></td>
<td style="vertical-align: top;">
<select onchange="content_modified = true" name="etype[]">
<option selected="selected" value="1" label="Manual">Manual</option>
<option value="2" label="Automated">Automated</option>
</select>
</td>
</tr>
{/if}
我是smarty的新手,对此了解不多。
需要帮忙。
提前致谢。