目前我正在使用 CodeIgniter 进行库存项目。在 vendorlist 表单中,我有以下文本字段:姓名地址联系人和电话。
这适用于除 & (与号)符号以外的所有其他文本。当我在其后插入 & 符号和其他文本时,它根本不起作用。
在 vendorlist.php 文件中,我使用以下代码:
<form onsubmit="return false" id="frmvendor">
<dl>
<dt><label><?php echo $this->lang->line('name');?></label></dt>
<dd><input type="text" name="vendorname" id="vendorname" value="" class="validate[required] text-input" /></dd>
</dl>
<dl>
<dt><label><?php echo $this->lang->line('address');?></label></dt>
<dd><textarea name="address" id="address" cols="22" class="validate[required] text-input"></textarea></dd>
</dl>
<dl>
<dt><label><?php echo $this->lang->line('phone');?></label></dt>
<dd><input type="text" name="phone" id="phone" value="" size="60" class="validate[required] text-input" /></dd>
</dl>
<dl>
<dt><label><?php echo $this->lang->line('contactperson')?></label></dt>
<dd><input type="text" name="contactperson" id="contactperson" value="" /></dd>
</dl>
<dl>
<dt><label><?php echo $this->lang->line('active');?></label></dt>
<dd>
<?php echo $this->lang->line('yes');?><input type="radio" name="vendor_locked" checked="checked" value="0" id="vendor_locked" />
<?php echo $this->lang->line('no');?><input type="radio" name="vendor_locked" value="1" id="vendor_unlocked" />
</dd>
</dl>
<dl>
<dt></dt>
<dd><input type="submit" name="save" value="Save" /><input type="button" name="cancel" value="Cancel" onclick="resetForm('frmvendor')" /></dd>
</dl>
<input type="hidden" id="vendorid" name="vendor" value="" />
</form>
它如何适用于 & 符号?帮帮我,伙计们。