...suche funzt, aber ich schaffe es einfach nicht die funktion mit dem blättern, seitenweise anzeigen einzubinden...bitte wer kann mir helfen?
-----------------------
<?php include("config.php"); ?>
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" width="750">
<tr>
<td bgcolor="#EFEFEF" width="300" valign="bottom">
<center>
<FORM method="post" action="<? echo $PHP_SELF ?>">
</center>
</center>
<p align="right" style="padding-top: 3; padding-bottom: 1"><b>
Suchen</b><INPUT type=hidden name=sent value=1>
</td>
<center>
<td bgcolor="#EFEFEF" width="250">
<p align="center" style="padding-top: 3; padding-bottom:3">
<INPUT type=text name=search size=30>
</td>
</center>
<td bgcolor="#EFEFEF" width="300">
<p align="left" style="padding-top: 3; padding-bottom: 3">
<INPUT TYPE="submit" value="suchen">
</td>
</tr>
<center>
</table>
</center>
</div></center>
<?php
$con = mysql_connect("$host","$user","$password")
or die ("Connection Error to Server");
$db = mysql_select_db("$dbtable",$con)
or die("Connection Error to Database");
if ($search) {
$result = mysql_db_query($dbtable, "SELECT * FROM gast where inhalt LIKE '%$search%';");
while ($row = mysql_fetch_object ($result))
{
echo "<hr>".$row->name."" ;
echo "<br>".$row->email."";
echo "<br>".$row->inhalt."" ;
}
}
else
{
}
?>
-----------------------------------
bei normaler datenbankabfrage, also zum beispiel -order by name- klappt es mit seitenweise anzeigen...habe diverse codeschnipsel getestet, aber in verbindung mit dem suchscript bekomme ich es einfach nicht auf die reihe...
gruß bullizist
-----------------------
<?php include("config.php"); ?>
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" width="750">
<tr>
<td bgcolor="#EFEFEF" width="300" valign="bottom">
<center>
<FORM method="post" action="<? echo $PHP_SELF ?>">
</center>
</center>
<p align="right" style="padding-top: 3; padding-bottom: 1"><b>
Suchen</b><INPUT type=hidden name=sent value=1>
</td>
<center>
<td bgcolor="#EFEFEF" width="250">
<p align="center" style="padding-top: 3; padding-bottom:3">
<INPUT type=text name=search size=30>
</td>
</center>
<td bgcolor="#EFEFEF" width="300">
<p align="left" style="padding-top: 3; padding-bottom: 3">
<INPUT TYPE="submit" value="suchen">
</td>
</tr>
<center>
</table>
</center>
</div></center>
<?php
$con = mysql_connect("$host","$user","$password")
or die ("Connection Error to Server");
$db = mysql_select_db("$dbtable",$con)
or die("Connection Error to Database");
if ($search) {
$result = mysql_db_query($dbtable, "SELECT * FROM gast where inhalt LIKE '%$search%';");
while ($row = mysql_fetch_object ($result))
{
echo "<hr>".$row->name."" ;
echo "<br>".$row->email."";
echo "<br>".$row->inhalt."" ;
}
}
else
{
}
?>
-----------------------------------
bei normaler datenbankabfrage, also zum beispiel -order by name- klappt es mit seitenweise anzeigen...habe diverse codeschnipsel getestet, aber in verbindung mit dem suchscript bekomme ich es einfach nicht auf die reihe...
gruß bullizist
Kommentar