1

这段代码有什么问题,我正在使用表单将一些值插入数据库,我有一个这样的控制器设置。当我提交表单时,该值未发布在数据库中,但如果我删除所有其他字段并在表单中只留下 2 个字段并发布它,它可以工作,所以我想念一些东西,一直试图解决超过6小时。请帮忙:

//database insertion

 if (isset($_POST['VideoTITLE']))
 if (isset($_POST['ByArtist']))
 if (isset($_POST['GroupName']))
 if (isset($_POST['URL'])) 
 if (isset($_POST['VideoDate']))
 {

  try
 {
 $sql = 'INSERT INTO videoclip SET
        VideoTITLE = :VideoTITLE,
        ByArtist   = :ByArtist,
        GroupName  = :GroupName,
        URL        = :URL,
        VideoDate  = CURDATE()
        ';

    $s = $pdo -> prepare($sql);
    $s -> bindValue(':VideoTITLE',$_POST['VideoTITLE']);
    $s -> bindValue(':ByArtist',$_POST['ByArtist']);
    $s -> bindValue(':GroupName',$_POST['GroupName']);
    $s -> bindValue(':URL',$_POST['URL']);
    $s -> execute();
}
  catch(PDOException $e)
  {
    $error = 'error adding submitted data' . $e-> getMessage();
    include 'error.html.php';
    exit();
  }
    header('Location:.');
    exit();
}

这是我的 html 表单设置:

<form action="?" method="post" class="form-horizontal">
   <legend>Song Info</legend>


<fieldset>
<label>Song Title </label>
<input type="text" id="VideoTITLE" name="VideoTITLE" placeholder="song name…">

<label>Artist </label>
<input type="text" id="ByArtist" name="ByArtist" placeholder="artist name…">

<label>Musical Group</label>
<input type="text" id="GroupName" name="GroupName" placeholder="Type something…">

<label>Poster link</label>
<input type="text" id="URL" name="URL" placeholder="Type something…">

</fieldset><br>
<input  type="submit" class="btn  btn-success" value="Post video">

</form>
4

3 回答 3

1

它有几个问题,也许更多:

  1. isset($_POST['VideoDate'])的 if 条件始终为假,因为VideoDate不在您的形式中。你应该把它拿出来,因为你似乎想CURDATE()在你的插入脚本中设置它。
  2. 您的插入语句不正确。mysql插入通常看起来像INSERT INTO TABLE_NAME (COL1, COL2) values('VALUE1', 'VALUE2');所以你应该改变你的插入代码看起来像

    $sql = 'INSERT INTO videoclip (VideoTITLE, ByArtist, GroupName, URL, VideoDate) values (:VideoTITLE, :ByArtist, :GroupName, :URL, CURDATE())';

于 2012-12-20T20:02:22.590 回答
0

您的语法对于INSERT. 它应该是这样的:

$sql = 'INSERT INTO videoclip (VideoTITLE, ByArtist, GroupName, URL, VideoDate) 
    VALUES (:VideoTITLE, :ByArtist, :GroupName, :URL, CURDATE())';

此外,$_POST['VideoDate']由于您的表单中没有它,因此无效。

于 2012-12-20T20:03:19.607 回答
0

你做错了if陈述。

if (isset($_POST['VideoTITLE']) && isset($_POST['ByArtist']) && isset($_POST['GroupName'])
    && isset($_POST['URL']) && isset($_POST['VideoDate'])) {
....
}

这是基本的编程内容,因此您可能想要一本很好的编程或 PHP 入门书。

于 2012-12-20T20:46:22.850 回答