1 Star 0 Fork 0

skyADMIN/HTMLtest1

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
submit_server.php 777 Bytes
一键复制 编辑 原始数据 按行查看 历史
skyADMIN 提交于 2015-09-28 17:54 . 基本功能基本实现
<?php
/**
* Created by IntelliJ IDEA.
* User: skyADMIN
* Date: 15/9/28
* Time: 下午5:12
*/
include "conn.php";
$num = $school = $name = $domain = $author = "";
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$num = test_input($_POST["num"]);
$school = test_input($_POST["school"]);
$name = test_input($_POST["name"]);
$domain = test_input($_POST["domain"]);
$author = test_input($_POST["author"]);
}
function test_input($data) {
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
return $data;
}
$sql = "INSERT INTO HTML5submit (num, school, name, domain, author) VALUES ('$num', '$school', '$name', '$domain', '$author')";
//echo $sql;
mysql_query($sql);
mysql_close();
header("Location:index.php");
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/skyADMIN/HTMLtest1.git
git@gitee.com:skyADMIN/HTMLtest1.git
skyADMIN
HTMLtest1
HTMLtest1
master

搜索帮助