我试图在开放购物车网站的表单中转义一些HTML - 它是自定义编码,会话数据让我失望。目前我有:
<input type="text" value="<?php echo $this->session->data['persline_2']; ?>" name="persline_2" id="persline_2" class="keyboardInput" style="width:200px" maxlength="30" />
我试图使用:
<input type="text" value="<?php echo htmlentities$this->session->data['persline_2']; ?>" name="persline_2" id="persline_2" class="keyboardInput" style="width:200px" maxlength="30" />
但这并没有成功。我认为htmlentities
应该在变量之前开始。
这是在他们的MVC下使用PHP的开放式购物车FYI。
答案 0 :(得分:2)
尝试:<?php echo htmlentities($this->session->data['persline_2']); ?>
注意括号()