-1
if($_POST['button']){
    $name= $_POST['name'];
    $url= $_POST['url'];
    $description= $_POST['description'];

    mysql_query("INSERT INTO videos VALUES (
        '','$name','$url','$description'
        )");
}

echo '<h1>Add Video</h1>
<form action="addvideo.php" method="post">
Name: <input type="text" name="name" /><br />
Url: <input type="text" name="url" /><br />
<a style="position:relative; top:-250px;">Description:</a> 
<textarea    name="description" style="height:500px; width:750px;"></textarea>
<input type="submit" value="submit" name="button" style="position:relative; top:-250px;" />
</form>';

这是我正在构建的网站的代码,您可以在其中输入 youtube 视频的数据。然后应该将其插入我数据库的表中。问题是,当描述在一行中时,它会在到达文本区域的末尾时中断。由于某种原因,这使得它没有将任何东西放入表中。这就是问题所在。

4

2 回答 2

1

您可以使用 MySQL_real_escape_string 之类的

<?php 
if(isset($_POST['submit'])){
    $con = mysql_connect ('localhost','username','password') or die(mysql_error()); 
        mysql_select_db('database') or die(mysql_error());
    //$desc = mysql_real_escape_string($_POST['txtDesc']);//nl2br($_POST['txtDesc']);
    $desc = mysql_real_escape_string($_POST['txtDesc']);
    $sql = "INSERT INTO desc_tbl (desc) VALUES('$desc')";
    $result = mysql_query($sql) or die(mysql_error());
}
?>
<form method="POST" action="textarea.php">
<textarea name="txtDesc" row = "50" cols = "50" id="txtDesc" wrap="hard"></textarea>
<input type="submit" value="submit" name="submit">
</form>
于 2013-06-19T05:06:05.730 回答
0

我建议使用mysqliover mysql。也使用准备好的语句,它们会为你省去很多麻烦。

于 2013-06-19T04:41:46.610 回答