php允许运行javascript代码

时间:2017-12-12 22:51:44

标签: javascript php html

好人,我有问题..

<fieldset class="form-group inline-label">
     <textarea name="historia" class="form-control" maxlength="2000" minlength="700" placeholder="Minimo de 700 caracteres" requiredstyle="width:568px;height:180px;"></textarea>
<label for="formGroupExampleInput2">História:</label>
</fieldset>

我有更多这个例子,但我用这个来解释。我有这个textarea。 我将值保存到数据库,如下所示: $ historia = $ _POST ['historia'];

$sql = "INSERT INTO pendentes(blabla phistoria,blabla) VALUES (?,?,?,?,?,?,?,?,?,?)";
if($stmt = $ligacao->prepare($sql))
{$stmt->bind_param("blabla", blabla, $historia);
$stmt->execute();                                 
$stmt->close();

如果我插入例如:?&gt;警报(“Something Something”); 它将保存在数据库中并在页面打开时运行 我该如何解决? 提前致谢

0 个答案:

没有答案