|
| søg funktion Fra : scotdane |
Dato : 21-02-08 11:34 |
|
resultat side viser det info jeg vil have, men jeg vil have title til
at have et link so man klik på og blive vist hele besked på det rigtig
side.
Er der nogen der ude???????
<?php
$colname_rsResultat = "1";
if (isset($_GET['search'])) {
$colname_rsResultat = (get_magic_quotes_gpc()) ? $_GET['search'] :
addslashes($_GET['search']);
}
mysql_select_db($database_******, $******);
$query_rsResultat = sprintf("SELECT id, cat_id, title, title_desc FROM
solutions WHERE title LIKE '%%%s%%' OR title_desc LIKE '%%%s%%' OR
full_text LIKE '%%%s%%'", $colname_rsResultat,$colname_rsResultat,
$colname_rsResultat, $colname_rsResultat);
$rsResultat = mysql_query($query_rsResultat, $lytzen) or
die(mysql_error());
$row_rsResultat = mysql_fetch_assoc($rsResultat);
$totalRows_rsResultat = mysql_num_rows($rsResultat);
$id = $rsResultat[id];
$cat_id = $rsResultat[cat_id];
$title = $rsResult[title];
?>
<table width="400" border="0" cellspacing="0" cellpadding="2"
class="results">
<tr>
<td><h1>Resultater:</h1></td>
</tr>
<?php do { ?>
<tr>
<td><a href="solutions.php?id=<?php echo
$row_rsResultat['id']; ?><?php if ($row_rsResultat['cat_id'] <> null)
echo "&cat_id="+$row_rsResultat['id']; ?>"><?php echo
$row_rsResultat['title']; ?></a><br><?php echo
$row_rsResultat['title_desc']; ?></td>
</tr>
<?php } while ($row_rsResultat =
mysql_fetch_assoc($rsResultat)); ?>
</table>
<?php if ($totalRows_rsResultat == 0) { // Show if recordset
empty ?>
<table width="600" border="1" cellspacing="0" cellpadding="2">
<tr>
<td>Søgningen gav desværre ikke nogen
resultater. </td>
</tr>
</table>
<?php } // Show if recordset empty ?> <p> </p></td>
</tr>
</table>
| |
marwej (22-03-2008)
| Kommentar Fra : marwej |
Dato : 22-03-08 15:43 |
| | |
|
|