Hi
I have got results being displayed after clicking the search button in a form on my home page but it brings up all the results which is ok but how do I get onlt the results a user searches for for example a location or property type etc as its for a property website
The coding is below for the results page
Also sorry how do I add a background image to the php page, I tried using css but wouldn’t work
[php]
body {background-image:url(‘images/greybgone.png’);}
Number of Bedrooms: '.$row['bedrooms']; echo '
Number of Bathrooms: '.$row['bathrooms']; echo '
Garden: '.$row['garden']; echo '
Description: '.$row['description']; echo '
Price: '.$row['price']; echo '
Location: '.$row['location']; echo '
Image: '.$row['image']; echo '
'; } ?>[/php]