这个是inc.php插件代码
<?php
if(!defined('IN_DISCUZ')){
exit('Access Denied');
}
include template('down_love:down_love');
require './source/class/class_core.php';
$discuz->init();//调用discuz公共执行类等核心代码
if(!$_G['uid']){
showmessage('not_loggedin', NULL, array(), array('login' => 1));}
if($_POST['intolove']) //对提交按钮做出判断
{
DB::query("INSERT INTO ".DB::table('moodwall')." (id,uid,username,truename,loveperson)
.VALUES ('','$_G[uid]','$_G[username]','$_G[trueperson]','$_POST[loveperson]'");
showmessage('发表暗恋宣言成功');
}
if($_POST['foundlove']) //对提交按钮做出判断,(这段代码没有写完),先判断找到的对象是够填写过,在判断填写的是什么
{
$query = DB::query("SELECT loveperson FROM ".DB::table('down_love')."
WHERE loveperson='$_G[truename]' ");
if(!$_GET[truename])
{echo "没有找到,或您暗恋的对象还没有加入本网站,快去邀请Ta吧!!";}
else {
showmessage('找到了,即将跳转到Ta的个人主页','');
}
}
?>
|