-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy.php
110 lines (84 loc) · 3.26 KB
/
my.php
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?php
require_once("include/config.php");
require_once("include/dress.php");
$smarty->assign('title',$_LANG["my_mephit"]);
$BODY='';
$PATH='';
$TAB1='my';
require("include/menu_personal.php");
function ul($filename,$arr){
if(count($arr)>0){
$x='<ul>';
foreach($arr as $id=>$nome)$x.='<li><a href="'.$filename.'.php?id='.$id.'">'.$nome.'</a>';
return $x.'</ul>';
}else return '<div style="text-indent:2em;">Nessun elemento</div>';
}
if(isset($_POST[nuovoGruppo])&&trim($_POST[nuovoGruppo])!=""){
$nuovoGruppo=$_POST[nuovoGruppo];
$q="SELECT * FROM mephit_gruppo WHERE nome='".$nuovoGruppo."'";
$r=mysql_query($q);
if(mysql_num_rows($r)==0){
$query="INSERT INTO mephit_gruppo (fk_master,nome) VALUES (".$_SESSION[user_id].",'".$nuovoGruppo."')";
$result=mysql_query($query);
$lastId=mysql_insert_id();
$query="INSERT INTO mephit_giocatore_gruppo (fk_giocatore,fk_gruppo) VALUES (".$_SESSION[user_id].",".$lastId.")";
$result=mysql_query($query);
}else{
$BODY.='<div>';
$BODY.='ERRORE: il gruppo '.htmlentities(stripslashes($_POST[nuovoGruppo])).' esiste già<br><br>';
$BODY.='<a href="javascript:history.back();">Indietro</a>';
$BODY.='</div><br>';
}
}
$BODY.='<table summary="." border="0" cellpadding="0" cellspacing="0"><tr valign="top"><td>';
$BODY.='<h4>'.'Il mio profilo'.'</h4>';
$BODY.=getAvatarBox($_SESSION[user_id]);
$BODY.='</td><td width="10" style="border-right:1px solid #ccc" nowrap> </td><td width="10" nowrap></td><td>';
$BODY.='<h4>'.'I miei personaggi'.'</h4>';
$BODY.=ul("personaggi",getPGs());
$BODY.='</td><td width="10" style="border-right:1px solid #ccc" nowrap> </td><td width="10" nowrap></td><td>';
$BODY.='<h4>'.'Le mie classi'.'</h4>';
$BODY.=ul("classi",getUserClass($_SESSION[user_id]));
$BODY.='</td><td width="10" style="border-right:1px solid #ccc" nowrap> </td><td width="10" nowrap></td><td>';
$BODY.='<h4>'.'Gruppi che seguo'.'</h4>';
$BODY.=ul("gruppi",getGroupsAsMember());
$BODY.='<h4>'.'Gruppi che amministro'.'</h4>';
$BODY.=ul("gruppi",getGroupsAsAdmin());
$BODY.='</td><td width="10" style="border-right:1px solid #ccc" nowrap> </td><td width="10" nowrap></td><td>';
$BODY.='<h4>'.'Gilde che seguo'.'</h4>';
$BODY.=ul("gilde",getGuildsAsMember());
$BODY.='<h4>'.'Gilde che amministro'.'</h4>';
$BODY.=ul("gilde",getGuildsAsAdmin());
$BODY.='</td><td width="10" style="border-right:1px solid #ccc" nowrap> </td><td width="10" nowrap></td><td>';
$BODY.='<h4>'.'Avventure che seguo'.'</h4>';
$BODY.=ul("avventura",getAdventuresAsMember());
$BODY.='<h4>'.'Avventure che amministro'.'</h4>';
$BODY.=ul("avventura",getAdventuresAsAdmin());
$BODY.='</td>';
/*
$BODY.='</td><td width="10" nowrap></td><td>';
$BODY.='<h4>'.'I miei amici'.'</h4>';
$amici=getFriends();
$query="SELECT
*
FROM mephit_giocatore
WHERE id_giocatore IN (".implode(",",$amici).")
";
$result=mysql_query($query);
if($result){
if(mysql_num_rows($result)>0){
$BODY.='<ul>';
while($row=mysql_fetch_array($result)){
$BODY.='<li><a href="giocatori.php?id='.$row[id_giocatore].'">'.$row[nick].'</a>';
}
$BODY.='</ul>';
}else{
$BODY.="Nessun gruppo";
}
}else{
$BODY.="ERRORE DEL SERVER: IMPOSSIBILE LEGGERE IL DATABASE";
}
*/
$BODY.='</tr></table>';
require_once("include/dress_dynamic.php");
?>