- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
好的,这就是我想要做的。我正在向我的数据库中插入一些数据。这是一个博客,我有作者、标签、隐藏元标签等字段。几周来我一直在努力解决这个问题。本质上,我在我的 CMS 上,似乎没有插入任何内容,但我没有收到任何错误(即使使用 error_reporting( E_ALL );
强制执行)。据我所知,所有内容都以正确的顺序使用正确的变量提交下面是我的代码,感谢您的帮助!
HTML:
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Admin Panel</title>
<link rel="stylesheet" href="../css/master.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tag-editor/1.0.20/jquery.tag-editor.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tag-editor/1.0.20/jquery.tag-editor.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jodit/3.2.34/jodit.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/izitoast/1.4.0/css/iziToast.css">
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tag-editor/1.0.20/jquery.tag-editor.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jodit/3.2.34/jodit.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/izitoast/1.4.0/js/iziToast.min.js"></script>
</head>
<body>
<div class="admin">
<div class="a-padding"><li class="isni"><a href="#"><i class="fas fa-pen"></i> Write Posts</a></li></div>
<div class="a-padding"><li class="isni"><a href="#"><i class="fas fa-file-alt"></i> View Posts</a></li></div>
<div class="a-padding"><li class="isni"><a href="#"><i class="fas fa-bookmark"></i> Viewers</a></li></div>
<div class="a-padding"><li class="isni"><a href="#"><i class="fas fa-plus"></i> Widget</a></li></div>
</div>
<div class="main-body">
<h1>Start Writing</h1>
<form method="post">
<input type="text" name="title" placeholder="Title" class="form" required>
<div class="form-padding"><input type="text" name="author" placeholder="Author" class="form" required></div>
<div class="form-padding"><input type="text" name="imgurl" placeholder="IMG URL..." class="form"></div>
<div class="form-padding"><input type="text" name="tags" required></div>
<div class="form-padding"><input type="text" name="htags" required></div>
<div class="form-padding"><textarea id="body" name="bodydata" required></textarea></div>
<div class="spacer"><input type="checkbox" name="hpbox"> Make Highlight</div>
<input type="submit" name="post" class="form">
</form>
<!-- This is where the PHP lies -->
</div>
<script>
$(document).ready(function() {
var editor = new Jodit("#body", {
"uploader": {
"insertImageAsBase64URI": true
}
});
});
$('input[name="tags"]').tagEditor({
placeholder: "Meta Tags",
animateDelete: 100
});
$('input[name="htags"]').tagEditor({
placeholder: "Hidden Meta Tags",
animateDelete: 100
});
</script>
</body>
</html>
PHP:
// This is before the HTML
require '../imports/database.php';
error_reporting(E_ALL);
date_default_timezone_set('America/Chicago');
// ------ This is the rest of it, placed where the comment is in the HTML section above
if (isset($_POST["post"])) {
if (isset($_POST["hpbox"])) {
$title = $_POST["title"];
$author = $_POST["author"];
$imgurl = $_POST["imgurl"];
$tags = $_POST["tags"];
$htags = $_POST["htags"];
$bd = $_POST["bodydata"];
$date = date("D M d, Y");
$time = date("h:i A");
$p = "true";
$harch_date = date("M Y");
$pinsql = "UPDATE `posts` SET `hp`='false' WHERE `hp`='true'";
if ($con->query($pinsql) === TRUE) {
echo
'
<script type="text/javascript">
iziToast.show({
title: "Success!",
message: "Queried highlight",
backgroundColor: "#37c2dd"
});
</script>
';
} else {
echo "Error updating record: " . $con->error;
}
$stmt = $con->prepare("INSERT INTO `posts` (`title`, `author`, `image`, `bodydata`, `tags`, `htags`, `date`, `time`, `hp`, `arch_id`) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
$stmt->bind_param("ssssssssss", $title, $author, $imgurl, $bd, $tags, $htags, $date, $time, $p, $harch_dat);
$stmt->execute();
$stmt->close();
echo
'
<script type="text/javascript">
iziToast.show({
title: "Success!",
message: "Post inserted",
backgroundColor: "#37c2dd"
});
</script>
';
}else {
$title = $_POST["title"];
$author = $_POST["author"];
$imgurl = $_POST["imgurl"];
$tags = $_POST["tags"];
$htags = $_POST["htags"];
$bd = $_POST["bodydata"];
$date = date("D M d, Y");
$time = date("h:i A");
$arch_date = date("M Y");
$p = "false";
$stmt = $con->prepare("INSERT INTO `posts` (`title`, `author`, `image`, `bodydata`, `tags`, `htags`, `date`, `time`, `hp`, `arch_id`) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)");
$stmt->bind_param("ssssssssss", $title, $author, $imgurl, $bd, $tags, $htags, $date, $time, $p, $arch_date);
$stmt->execute();
$stmt->close();
$con->close();
echo
'
<script type="text/javascript">
iziToast.show({
title: "Success!",
message: "Post inserted",
backgroundColor: "#37c2dd"
});
</script>
';
}
}
注意:查看整个文件 https://pastebin.com/xtmSGJRA
导入/database.php 文件:
<?php
$con = new mysqli('localhost', 'root', '', 'WWDB');
?>
最佳答案
我会先尝试找出错误。
我要求 database.php 文件来检查您是否正在检查连接是否成功建立。你不是。您可以在 database.php 文件中使用以下顺序同时启用 mysqli 报告模式:
mysqli_report(MYSQLI_REPORT_STRICT);
try {
$con = new mysqli('localhost', 'root', '', 'WWDB');
if ($con->connect_error) {
die('Connect Error (' . $con->connect_errno . ') ' . $con->connect_error);
}
} catch (Exception $e) {
echo 'ERROR:'.$e->getMessage();
}
在此之后,如果没有显示任何有值(value)的错误,请尝试将执行命令放在类似的 try-catch block 中。我猜你的数据库表结构中可能有一个字段被定义为整数或 bool 值,而你正在向它传递一个字符串值,因此请 try catch 该错误。
编辑:您没有提供更新查询是否有效的信息。如果您只对准备好的语句有问题,而正常的查询正在运行,则您需要尝试不同的方法,那么这真的有效吗?
"UPDATE `posts` SET `hp`='false' WHERE `hp`='true'"
关于php - 当记录没有插入(准备好的语句)时,为什么我没有在 PHP 中收到错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55435357/
我在 JavaScript 文件中运行 PHP,例如...... var = '';). 我需要使用 JavaScript 来扫描字符串中的 PHP 定界符(打开和关闭 PHP 的 )。 我已经知道使
我希望能够做这样的事情: php --determine-oldest-supported-php-version test.php 并得到这个输出: 7.2 也就是说,php 二进制检查 test.
我正在开发一个目前不使用任何框架的大型 php 站点。我的大问题是,随着时间的推移慢慢尝试将框架融入应用程序是否可取,例如在创建的新部件和更新的旧部件中? 比如所有的页面都是直接通过url服务的,有几
下面是我的源代码,我想在同一页面顶部的另一个 php 脚本中使用位于底部 php 脚本的变量 $r1。我需要一个简单的解决方案来解决这个问题。我想在代码中存在的更新查询中使用该变量。 $name)
我正在制作一个网站,根据不同的情况进行大量 PHP 重定向。就像这样...... header("Location: somesite.com/redirectedpage.php"); 为了安全起见
我有一个旧网站,我的 php 标签从 因为短标签已经显示出安全问题,并且在未来的版本中将不被支持。 关于php - 如何避免在 php 文件中写入
我有一个用 PHP 编写的配置文件,如下所示, 所以我想用PHP开发一个接口(interface),它可以编辑文件值,如$WEBPATH , $ACCOUNTPATH和 const值(value)观
我试图制作一个登录页面来学习基本的PHP,首先我希望我的独立PHP文件存储HTML文件的输入(带有表单),但是当我按下按钮时(触发POST到PHP脚本) )我一直收到令人不愉快的错误。 我已经搜索了S
我正在寻找一种让 PHP 以一种形式打印任意数组的方法,我可以将该数组作为赋值包含在我的(测试)代码中。 print_r 产生例如: Array ( [0] => qsr-part:1285 [1]
这个问题已经有答案了: 已关闭11 年前。 Possible Duplicate: What is the max key size for an array in PHP? 正如标题所说,我想知道
我正在寻找一种让 PHP 以一种形式打印任意数组的方法,我可以将该数组作为赋值包含在我的(测试)代码中。 print_r 产生例如: Array ( [0] => qsr-part:1285 [1]
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
我在 MySQL 数据库中有一个表,其中存储餐厅在每个工作日和时段提供的菜单。 表结构如下: i_type i_name i_cost i_day i_start i_
我有两页。 test1.php 和 test2.php。 我想做的就是在 test1.php 上点击提交,并将 test2.php 显示在 div 中。这实际上工作正常,但我需要向 test2.php
我得到了这个代码。我想通过textarea更新mysql。我在textarea中回显我的MySQL,但我不知道如何更新它,我应该把所有东西都放进去吗,因为_GET模式没有给我任何东西,我也尝试_GET
首先,我是 php 的新手,所以我仍在努力学习。我在 Wordpress 上创建了一个表单,我想将值插入一个表(data_test 表,我已经管理了),然后从 data_test 表中获取所有列(id
我有以下函数可以清理用户或网址的输入: function SanitizeString($var) { $var=stripslashes($var); $va
我有一个 html 页面,它使用 php 文件查询数据库,然后让用户登录,否则拒绝访问。我遇到的问题是它只是重定向到 php 文件的 url,并且从不对发生的事情提供反馈。这是我第一次使用 html、
我有一个页面充满了指向 pdf 的链接,我想跟踪哪些链接被单击。我以为我可以做如下的事情,但遇到了问题: query($sql); if($result){
我正在使用 从外部文本文件加载 HTML/PHP 代码 $f = fopen($filename, "r"); while ($line = fgets($f, 4096)) { print $l
我是一名优秀的程序员,十分优秀!