This repository was archived by the owner on Aug 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.php
More file actions
42 lines (36 loc) · 1.31 KB
/
Copy pathhelp.php
File metadata and controls
42 lines (36 loc) · 1.31 KB
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
<?php
include("config.php");
include("$directory/includes/config/auth.php");
include("$directory/includes/misc/include.php");
$langid = $_SESSION['SESS_LANG'];
$language_sql = mysql_query("SELECT * FROM help WHERE lang = '$langid'", $langdb);
while ($langrow = mysql_fetch_array($language_sql)) {
$l1 = $langrow['1'];
$l2 = $langrow['2'];
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title><? echo $l2; ?></title>
<link href="loginmodule.css" rel="stylesheet" type="text/css" />
<link href="button.css" rel="stylesheet" type="text/css" />
</head>
<body><div id="banner">
<h1>Welcome <?php echo $_SESSION['SESS_LOGIN']; ?> to <?php echo $game_name; ?>!</h1>
<?php include("$directory/includes/misc/clock.php"); ?>
</div>
<?php
include("$directory/includes/menus/newmenu.php");
echo "<div id=\"main\">";
include("$directory/includes/misc/resource.php");
include("$directory/includes/misc/infomsg.php");
echo $l1;
include("$directory/includes/misc/online.php");
echo "</div>";
include("$directory/includes/misc/count.php");
include("$directory/includes/misc/footer.php");
?>
</body>
</html>