我一直试图在最后一小时让这个工作。我检查了所有链接,并且正在引用正确的表。我从documents.php中删除了if语句并进行了检查,但没有任何内容将数据插入到表中。我还检查了错误日志,但没有收到任何错误。
的index.php
<div class="content">
<?php if (Session::get('user_logged_in') == true AND $admin == 1):?>
<form action="../processes/documents.php" method="post" class="pure-form pure-form-aligned">
<legend>Add Document</legend>
<fieldset>
<div class="pure-control-group">
<input type="text" name="documentnumber" placeholder="Document Number">
</div>
<div class="pure-control-group">
<input type="text" name="documentdate" placeholder="Document Date">
</div>
<div class="pure-control-group">
<input type="text" name="expirationdate" placeholder="Document Expiration Date">
</div>
<div class="pure-control-group">
<input type="text" name="description" placeholder="Description">
</div>
<div class="pure-control-group">
<select name="artistname">
<?php
$con=mysqli_connect("$hostname","$username","$password","saintfiv_artists");
if (mysqli_connect_errno($con))
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
$result2 = mysqli_query($con,"SELECT * FROM artists ORDER BY `artistname`");
while($row2 = mysqli_fetch_array($result2))
{
echo '<option value="' . $row2['artistname'] . '">' . $row2['artistname'] . '</option>';
}
?>
</select>
</div>
<div class="pure-control-group">
<select name="artwork">';
<?php
$dir = '../documents/';
$files = scandir($dir);
foreach ($files as $filename) {
if ($filename != '.' AND $filename != ".."){
echo "<option value='" . $filename . "'>".$filename."</option>";
}
}
?>
</select>
</div>
<div class="pure-control-group">
<button type="submit" name="adddocument" class="pure-button pure-button-primary">Add</button>
</div>
</fieldset>
</form>
<?php endif; ?>
</div>
documents.php
<?php
if (isset($_POST['adddocument'])) {
include_once('../config/mysql.php');
$document_number = $_POST['documentnumber'];
$document_date = $_POST['documentdate'];
$document_expiration_date = $_POST['expirationdate'];
$description = $_POST['description'];
$artist_name = $_POST['artistname'];
$document_name = $_POST['documentname'];
try {
$dbh = new PDO("mysql:host=$hostname;dbname=saintfiv_artists", $username, $password);
$stmt = $dbh->prepare("INSERT INTO documents(`document_number`, `document_date`, `document_expiration_date`, `description`, `artist_name`, `document_name`) VALUES (:document_number, :document_date, :document_expiration_date, :description, :artist_name, :document_name)");
$stmt->bindParam(':document_number', $document_number, PDO::PARAM_STR);
$stmt->bindParam(':document_date', $document_date, PDO::PARAM_STR);
$stmt->bindParam(':document_expiration_date', $document_expiration_date, PDO::PARAM_STR);
$stmt->bindParam(':description', $description, PDO::PARAM_STR);
$stmt->bindParam(':artist_name', $artist_name, PDO::PARAM_STR);
$stmt->bindParam(':document_name', $document_name, PDO::PARAM_STR);
$stmt->execute();
}
catch(PDOException $e)
{
echo $e->getMessage();
}
}
header("Location: http://www.saint57records.com/artistreports/documents/index");
?>
答案 0 :(得分:1)
“Fred,您的错误报告建议帮助我找到了问题。请将您的评论添加为答案。”
根据OP的要求,发表评论回答关闭问题。
添加:
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
连接打开后。
另外,在打开<?php
代码后立即将error reporting添加到文件顶部
error_reporting(E_ALL);
ini_set('display_errors', 1);
看看它是否产生任何结果,因为你没有检查潜在的错误。