Hallo,
ich habe versucht in mein script eine Blätterfunktion einzubauen, nur leider kommt der fehler:
Parse error: parse error, unexpected T_STRING, expecting '' in C:\FoxServ\www\Re-Design\page\tutorials\tutorials_ps.php on line 34
Hier mein Code:
<?php
$sql1="SELECT * FROM tutorials_ps";
$result1=mysql_query($sql1);
$zeilen=mysql_num_rows($result1);
while ($row=mysql_fetch_assoc($result1)) {
echo "<tr><td><div align='center'><a href='?action=tutorials/ps/tutorial_anzeige&id=" . htmlspecialchars($row["id"]) . "'>" . htmlspecialchars($row["Titel"]) . "</div></td>" .
"<td><div align='center'>" . htmlspecialchars($row["Datum"]) . "</div></td>" .
"<td><div align='center'>" . htmlspecialchars($row["Note"]) . "</div></td>" .
"<td><div align='center'>" . htmlspecialchars($row["Grad"]) . "</div></td></tr>";
} // while Ende
function msql_seiten_Zähler(tutorials_ps, $link, $proseite)
{
$result = mysql_query("SELECT COUNT(*) FROM tutorials_ps"
$total = mysql_result($result,0);
$seite = $_GET["seite"];
$proseite =15 ; // Anzahl der Eintraege pro Seite
$anzseiten = 5 ; // Anzahl der Links die angezeigt werden.
$seite = (isset($seite)) ? abs((int)$seite) : 1;
//$data=$anfang;
//------
$seitentotal = ceil($total/$proseite) ;
$start = floor($seite - $anzseiten/2) ;
$start = $start <= 0 ? 1 : $start ;
$end = ($start + $anzseiten-1) ;
$end = $end >= $seitentotal ? $seitentotal : $end ;
echo '<table class="content_rand" align="center" >';
echo '<tr>';
// ausgabe der Seitenzahlen
if ($seite > 1)
printf ('<a href="'.$link.'&seite=%s">vorherige Seite</a> ',$seite-1); // index.php anpassen
if ($start > 1)
printf ('<td class="content_head" width="10"><a class="content" href="'.$link.'&seite=%s">%s</a>...</td> ',1,1); // index.php anpassen
for ($i = $start; $i <= $end ;$i++)
{
if($i==$seite)
{
printf ("<td class="content_head" width="10"><strong>$i</strong></td> " // kein Link da sind wir ja
}
else
{
printf ('<td class="content_head" width="10"><a class="content" href="'.$link.'&seite=%s">%s</a></td> ',$i,$i); // index.php anpassen
}
}
if ($end < $seitentotal)
printf ('<td class="content_head" width="10">...<a class="content" href="'.$link.'&seite=%s">%s</a></td> ',$seitentotal,$seitentotal); // index.php anpassen
if ($seite < $seitentotal)
{
printf ('<a href="'.$link.'&seite=%s">nächste Seite</a> ',$seite+1); // index.php anpassen
}
echo ' </tr>';
echo '</table>';
}
mysql_close();
?>
es müsste doch gehen, oder?
Mfg. BNS