source: administrace/quests/ListQuests.php@ 5

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

import

File size: 944 bytes
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<HTML>
3<HEAD>
4 <META http-equiv="Content-Language" content="cs">
5 <META http-equiv="Content-Type" content="text/html; charset=windows-1250">
6 <META HTTP-EQUIV="Expires" CONTENT="Mon, 06 Jan 1990 00:00:01 GMT">
7 <link rel="SHORTCUT ICON" href="/images/favicon.ico">
8 <TITLE>WoW server Heroes of Fantasy - Projek pøekládání Questù do CZ</TITLE>
9</HEAD>
10<html>
11 <body>
12
13<?php
14
15
16 include 'DatabaseConection.php';
17 $Database = new Database('localhost','root','');
18 $Database->SelectDatabase('Quests');
19
20 //nepøeložené
21 Echo 'Nepøeloženo:<br />';
22 $ID = $Database->SQLCommand("SELECT * FROM czquests Where State = 0");
23 while ($Line = mysql_fetch_array($ID)) {
24 echo '<a href="Form.php?entry='.$Line['entry'].'">['.$Line['entry'].'], '; //.$Line['Title']
25 }
26
27 $Database->Disconnect();
28
29?>
30 </body>
31</html>
Note: See TracBrowser for help on using the repository browser.