1 Star 3 Fork 0

开源研习社PHP/PHPYanxi-Book

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
post.php 628 Bytes
一键复制 编辑 原始数据 按行查看 历史
JiaFeiX 提交于 2016-03-17 22:09 . 初始提交
<meta charset="utf-8">
<?php
$name = $_POST['name'];
$words = $_POST['words'];
$conn = mysql_connect("127.0.0.1","book","book_123");
if (!$conn){
die("连接数据库失败:" . mysql_error());
}
mysql_select_db("book", $conn);
mysql_query("set names 'utf8'");
$sql = "INSERT INTO word(id, name, words, time)VALUES('', '$name','$words', NOW())";
//echo $sql;
//mysql_query($sql,$conn);
//exit();
if(!mysql_query($sql,$conn)){
echo "添加数据失败:".mysql_error();
} else {
echo '添加数据成功!<meta http-equiv="Refresh" content="1; url=index.php" /> ';
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/PHPYanxi/PHPYanxi-Book.git
[email protected]:PHPYanxi/PHPYanxi-Book.git
PHPYanxi
PHPYanxi-Book
PHPYanxi-Book
master

搜索帮助