我尝试使用表单插入我的数据库,但它失败了 我的字段类型是longtext,因为我想添加iframe链接。 有人能帮助我吗?
这是我的源代码:
if (isset($_POST['valider']))
{
$connect = new PDO('mysql:host=localhost;dbname=horseblog;charset=utf8', 'root', '');
$res = $connect->exec('INSERT INTO musique SET lien="'.$_POST['lien'].'"');
header("location:mainPage.php");
}
我的表格:
<form class="form-inline" method="post" action ="ajoutMusic.php">
<div class="form-group">
<label for="exampleInputName2">LIEN :</label>
<input type ="text" class="form-control" name="lien" style="margin-left: 5%;" /><br/><br/>
<span style="width: 200px"></span>
</div>
<input class="btn btn-warning"style="margin-left: 3%; "type="submit" name="valider" value="ajouter"><br/><br/>
</form>