Sry könnt ihr mir mal bitte sagen, wo hier der Fehler ist?
Weil so geht es :-(
Wieso wenn ich Inhalt dahinter mache geht es nicht mehr :-(
mfg. marlin
PHP:
<?
error_reporting(E_ALL);
$sql = "SELECT ".
"Id, Autor, Datum , Inhalt ".
"FROM ".
"faelle ";
$result = mysql_query ($sql);
while ($ausgabe = mysql_fetch_array ($result))
{
print ("$ausgabe[Id]
$ausgabe[Autor]
$ausgabe[Datum]
$ausgabe[Inhalt]
<br><hr><br>");
}
?>
Weil so geht es :-(
PHP:
<?
error_reporting(E_ALL);
$sql = "SELECT ".
"Id, Autor, Datum ".
"FROM ".
"faelle ";
$result = mysql_query ($sql);
while ($ausgabe = mysql_fetch_array ($result))
{
print ("$ausgabe[Id]
$ausgabe[Autor]
$ausgabe[Datum]
$ausgabe[Inhalt]
<br><hr><br>");
}
Wieso wenn ich Inhalt dahinter mache geht es nicht mehr :-(
mfg. marlin