Also mein problem is:
Mit diesem Code:
PHP-Code:
<?php
mysql_connect('localhost','daniel','7626');
mysql_select_db('sven');
$query=mysql_query("SELECT id, titel, text FROM news ORDER BY id DESC LIMIT 5");
while($array=mysql_fetch_array($query))
{
$titel = $array['titel'];
$text = $array['text'];
echo "$titel";
echo "$text";
}
mysql_close();
?>
wird folgendes dargestellt:
http://tschui-schlaate.dyndns.org/sv...ex.php?seite=1
Nun will ich aber die darstellung etwa so haben:
http://tschui-schlaate.dyndns.org/sv...ex.php?seite=3
Wie kann ich dies machen?