doaction.php
972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
require('../class/connect.php');
require('../class/db_sql.php');
require('../data/dbcache/class.php');
require('../member/class/user.php');
require('../data/dbcache/MemberLevel.php');
require LoadLang('pub/fun.php');
$link=db_connect();
$empire=new mysqlquery();
eCheckCloseMods('pl');//關閉模塊
$enews=$_POST['enews'];
if(empty($enews))
{
$enews=$_GET['enews'];
}
//導入文件
if($enews=='AddPl'||$enews=='DoForPl')
{
include('plfun.php');
}
if($enews=="AddPl")//增加評論
{
$username=$_POST['username'];
$password=$_POST['password'];
$saytext=$_POST['saytext'];
$id=$_POST['id'];
$classid=$_POST['classid'];
$repid=$_POST['repid'];
$nomember=$_POST['nomember'];
$key=$_POST['key'];
AddPl($username,$password,$nomember,$key,$saytext,$id,$classid,$repid,$_POST);
}
elseif($enews=='DoForPl')//評論意見
{
DoForPl($_GET);
}
else
{printerror("ErrorUrl","history.go(-1)",1);}
db_close();
$empire=null;
?>