SQL Problem nach include

chingdog
Hallöchen,
ich komm mal wieder nicht weiter.
ich gebe per SQL eine Tabelle aus.
Um zusätzlich Benutzerdaten auszugeben muss ich eine include.php includen.
Sobald ich das wie angegeben in der ersten zeile des Quellcodes mache verschwindet die SQL Tabelle.

php:
1:
2:
3:
<?php include("login/include.php"); ?>
<?php require_once('Connections/seite.php'); ?>
<?php


Kann mir jemand helfen?
chingdog
Also, da ist noch nichts mit Layout, Design, Content oder so.
Das einzige was ich will ist mit require_once auf die SQL Datenbank zugreifen, und mit dem include auf die Benutzerverwaltung zugreifen.

Das require ohne dem include geht einwandfrei.
das include ohne dem require geht auch einwandfrei.
Beides zusammen geht nicht. es wird nichts angezeigt.

({uname} gehört zum include und soll den Benutzernamen anzeigen)
Bitte helft mir.
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:

<?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);
?>
Seldon
Was zeigt er denn an, wenn du
code:
1:
error_reporting(E_ALL);
oben reinmachst?
Seth93
Kannst du nicht gucken was passiert wenn du 2 x include benutzt?
Ich kenn leider require_once nicht, ich schau mir das grad an ^^
schubertmedia
Huhu,

stelle das require_once auf include um und schreibe in die erste Zeile error_reporting(E_ALL);

Danach einfach mal hier den Fehler reinschreiben. Der Befehl require gibt nur zum teil Fehler aus und bricht das Script ab.

Grüße Nico