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:
|
<?php require_once('Connections/spiele.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
mysql_select_db($database_spiele, $spiele);
$query_Abfrage1 = "SELECT * FROM gewinnspiele ORDER BY ID DESC";
$Abfrage1 = mysql_query($query_Abfrage1, $spiele) or die(mysql_error());
$row_Abfrage1 = mysql_fetch_assoc($Abfrage1);
$totalRows_Abfrage1 = mysql_num_rows($Abfrage1);
?>
<?php include("login/include.php"); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250" />
<title>GoldenCoins.de</title>
<style type="text/css">
body {
background-color: #FFF8D7;
}
a:link {
text-decoration: none;
color: #660000;
}
a:visited {
text-decoration: none;
color: #660000;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
</style>
<link href="GC.css" rel="stylesheet" type="text/css" />
</head>
<body onload=
"MM_preloadImages('Bilder/Layout/Menuelinks22r.jpg','Bilder/Layout/Menuelinks24r.jpg','Bilder/Layout/Menuelinks23r.jpg','Bilder/Layout/Menuelinks25r.jpg','Bilder/Layout/Menuelinks26r.jpg','Bilder/Layout/Menuelinks27r.jpg','Bilder/Layout/Menuelinks28r.jpg')">
<p>
<noscript>
</noscript>
<?php echo $row_Abfrage1['Gewinnspielname']; ?></p>
<p>{login}
{uname}</p>
</body>
</html>
<?php
mysql_free_result($Abfrage1);
?> |