echo "
\n";
echo "webdesign von skurrilewelt.de webdesign::sofware::flash
\n";
echo "Aktuelle Neuigkeiten und Buchtipps finden Sie auch im Archiv
\n";
include ("./php/sql9918.php");
$verbindung=mysql_connect($host,$user,$passwort);
$table="news";
mysql_select_db($dbname,$verbindung);
function removeFlashChars($textline)
{
$textline=rawurldecode($textline);
$textline=str_replace("SIZE=\"12\"","",$textline);
return $textline;
}
$sql="SELECT * FROM $table ORDER BY datum DESC";
$ergebnis=mysql_query($sql,$verbindung);
for($i=0;$i<4;$i++)
{
$zeile=mysql_fetch_array($ergebnis);
$datum=$zeile["datum"];
$body=removeFlashChars(stripslashes($zeile["body"]));
$headline=removeFlashChars(stripslashes($zeile["headline"]));
echo "".$headline." vom ".$datum."
\n";
echo $body;
}
echo "