I used a search tutorial to create my search function, which i have managed to link to my table and carry out correct searches. How do I edit the script to now turn the title of my search into a link to the product? all my products are linked like this: categories.php?c=0&p=70 ie 'p=70' being the product id.
The code that dispalys the data looks like.
while($row = mysql_fetch_object($result))
{
echo '<strong>Title: '.stripslashes(htmlspecialchars($row->pd_name)).'</strong><br />';
echo '<p>'.stripslashes(htmlspecialchars($row->pd_more)).'</p>';
echo '<p>'.stripslashes(htmlspecialchars($row->pd_more2)).'</p>';
echo '<hr size="1" />';
}
?>
I need the title ie. $row->pd_name to be the link.
I tried:
echo "<a href='categories.php?c=0p=". $row['pd_id']. "'>".stripslashes(htmlspecialchars($row->pd_name)).'</a><br />';
but received this error:
Fatal error: Cannot use object of type stdClass as array in C:\Documents and Settings\ben\Desktop\Bens Briefcase\www\whitedisc\searchtemp\search.php on line 64
Any info regarding my query will be cool.
THX