Hallo
ich habe ein kleines Problem!
und zwar möchte ich mir eine Ausgabe Seite machen wo meine Mysql-daten anzeigt!
leider zeigt es mir aber ga keine an und auch kein fehler obwohl über 10 daten darin stehen!
kann mir vllt jemand helfen!?
mfg
	
 
  
  
							
						
					ich habe ein kleines Problem!
und zwar möchte ich mir eine Ausgabe Seite machen wo meine Mysql-daten anzeigt!
leider zeigt es mir aber ga keine an und auch kein fehler obwohl über 10 daten darin stehen!
kann mir vllt jemand helfen!?
mfg
PHP Code:
	
	
<?php
error_reporting(E_ALL);
//---------------------------------------------------------------------------
//Kennungen
  $host="...";
  $user="...";
  $passwort="...";
  $datenbank="...";  
  if(!$conn = mysql_pconnect($host, $user, $passwort))
  {
   die("Verbindung zur Datenbank konnte nicht hergestellt werden. Errorcode: ".mysql_error());
  }
  if(!mysql_select_db($datenbank))
  {
     die("Die Datenbank $db konnte nicht ausgewaehlt werden. Errorcode: ".mysql_error());
  }
//----------------------------------------------------------------------------
//Ausgeben der Daten
  $tabellenname = "domain";
  MYSQL_SELECT_DB($datenbank) or die ( "<H3>Datenbank nicht vorhanden</H3>");
$abfrage = "SELECT domain FROM $tabellenname order by domain ASC"; 
$ergebnis = mysql_query($abfrage); 
while ($row = mysql_fetch_array($ergebnis))
  
//-----------------------------------------------------------------------------
?>
<html>
<head>
<meta http-equiv="Content-Language" content="de">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Seite2</title>
</head>
<body>
<p align="center">
<font size="7"><font color="#0000FF">ÜBER</font>schrift<font color="#0000FF">ÜBER</font>Schrift</font><font size="5">
</font></p>
<p align="center">
<font size="5">Verwaltete Domains</font></p>
<p> </p>
<table border="0" width="100%">
    <tr>
        <td width="425" align="left">
         
         <?php 
         
    echo $row; 
     
        ?>
        </td>
        <td> </td>
        <td width="380"><b><u>Whois</u></b></td>
    </tr>
    <tr>
        <td width="425" align="left">
         </td>
        <td> </td>
        <td width="380">
        <a style="text-decoration: none" target="_blank" href="http://www.denic.de">
        <font color="#000000">Denic</font></a></td>
    </tr>
    <tr>
        <td width="425" align="left">
         </td>
        <td> </td>
        <td width="380">
        <a style="text-decoration: none" target="_blank" href="http://www.eurid.eu/en/general/">
        <font color="#000000">Eurid</font></a></td>
    </tr>
    <tr>
        <td width="425" align="left">
         </td>
        <td> </td>
        <td width="380">
        <a style="text-decoration: none" target="_blank" href="http://www.internic.com/whois.html">
        <font color="#000000">Internic</font></a></td>
    </tr>
    
</table>
</body>
</html>
 
  
  
							
						 
          
 Moderator
 Moderator
Comment