source: quests/ListMyQuests.php@ 200

Last change on this file since 200 was 39, checked in by george, 18 years ago

Korekce velikosti písmen přípony obrázků.

File size: 1.3 KB
Line 
1<?php
2include('Global.php');
3?>
4<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
5<HTML>
6<HEAD>
7 <META http-equiv="Content-Language" content="cs">
8 <META http-equiv="Content-Type" content="text/html; charset=windows-1250">
9 <META HTTP-EQUIV="Expires" CONTENT="Mon, 06 Jan 1990 00:00:01 GMT">
10 <link rel="SHORTCUT ICON" href="/images/favicon.ico">
11 <TITLE>WoW server Heroes of Fantasy - Projekt pøekládání Questù do CZ</TITLE>
12</HEAD>
13<html>
14 <body>
15
16
17<?php
18
19 include('Panel.php');
20
21 if (@$_SESSION['Licence'] <> 1) {
22 die('Nemáte oprávnìní vztupovat zde!');
23 }
24
25
26 //pøeložené
27 $User = $_SESSION['User'];
28 Echo 'Rozpracované Questy:<br />';
29 $ID = $Database->SQLCommand("SELECT * FROM czquests Where User='$User' AND complete = '0' order by 1 ");
30 while ($Line = mysql_fetch_array($ID)) {
31 echo '<a href="Form.php?entry='.$Line['entry'].'">['.$Line['entry'].']</a>, '; //.$Line['Title']
32 }
33
34 Echo '<br /><br />Moje Pøeložené Questy:<br />';
35 $ID = $Database->SQLCommand("SELECT * FROM czquests Where User='$User' AND complete = '1' order by 1 ");
36 while ($Line = mysql_fetch_array($ID)) {
37 echo '<a href="Form.php?entry='.$Line['entry'].'">['.$Line['entry'].']</a>, '; //.$Line['Title']
38 }
39 $Database->Disconnect();
40
41?>
42 </body>
43</html>
Note: See TracBrowser for help on using the repository browser.