1 Star 0 Fork 21

大叔/php_study

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
flower.php 3.43 KB
一键复制 编辑 原始数据 按行查看 历史
Your Name 提交于 2020-12-24 11:31 . 布置作业(85)
<?php
/**
* TestGuest Version1.0
* ================================================
* Copy 2019-2021 ljcollege
* Web: http://www.ljcollege.com
* ================================================
* Author: Luo
* Date: 2020-9-8
*/
session_start();
//定义个常量,用来授权调用includes里面的文件
define('IN_TG',true);
//定义个常量,用来指定本页的内容
define('SCRIPT','flower');
//引入公共文件
require dirname(__FILE__).'/includes/common.inc.php';
//判断是否登录了
if (!isset($_COOKIE['username'])) {
_alert_close('请先登录!');
}
//送花
if ($_GET['action'] == 'send') {
_check_code($_POST['code'],$_SESSION['code']);
if (!!$_rows = _fetch_array("SELECT
tg_uniqid
FROM
tg_user
WHERE
tg_username='{$_COOKIE['username']}'
LIMIT
1
")) {
_uniqid($_rows['tg_uniqid'],$_COOKIE['uniqid']);
include ROOT_PATH.'includes/check.func.php';
$_clean = array();
$_clean['touser'] = $_POST['touser'];
$_clean['fromuser'] = $_COOKIE['username'];
$_clean['flower'] = $_POST['flower'];
$_clean['content'] = _check_content($_POST['content']);
$_clean = _mysql_string($_clean);
//写入表
_query("INSERT INTO tg_flower (
tg_touser,
tg_fromuser,
tg_flower,
tg_content,
tg_date
)
VALUES (
'{$_clean['touser']}',
'{$_clean['fromuser']}',
'{$_clean['flower']}',
'{$_clean['content']}',
NOW()
)
");
//新增成功
if (_affected_rows() == 1) {
_close();
//_session_destroy();
_alert_close('送花成功');
} else {
_close();
//_session_destroy();
_alert_back('送花失败');
}
} else {
_alert_close('非法登录!');
}
}
//获取数据
if (isset($_GET['id'])) {
if (!!$_rows = _fetch_array("SELECT tg_username FROM tg_user WHERE tg_id='{$_GET['id']}' LIMIT 1")) {
$_html = array();
$_html['touser'] = $_rows['tg_username'];
$_html = _html($_html);
} else {
_alert_close('不存在此用户!');
}
} else {
_alert_close('非法操作!');
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php
require ROOT_PATH.'includes/title.inc.php';
?>
<script type="text/javascript" src="js/code.js"></script>
<script type="text/javascript" src="js/message.js"></script>
</head>
<body>
<div id="message">
<h3>送花</h3>
<form method="post" action="?action=send">
<input type="hidden" name="touser" value="<?php echo $_html['touser']?>" />
<dl>
<dd>
<input type="text" readonly="readonly" value="TO:<?php echo $_html['touser']?>" class="text" />
<select name="flower">
<?php
foreach (range(1,100) as $_num) {
echo '<option value="'.$_num.'"> x'.$_num.'朵</option>';
}
?>
</select>
</dd>
<dd><textarea name="content">灰常欣赏你,送你花啦~~~</textarea></dd>
<dd>验 证 码:<input type="text" name="code" class="text yzm" /> <img src="code.php" id="code" onclick="javascript:this.src='code.php?tm='+Math.random();" /> <input type="submit" class="submit" value="送花" /></dd>
</dl>
</form>
</div>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/susheng174/php_study.git
git@gitee.com:susheng174/php_study.git
susheng174
php_study
php_study
master

搜索帮助