|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-11-13 13:34 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 11:00:01 2025 UTC |
Description: ------------ Hello, I'm trying to create a simple code for my website. My website is about real estate agency. And I did a programm called search.php that mades search on mysql database where I save the property information. Everything is going all right but I would like in the function display results change something. In fact, I'd like when the search.php find properties that show them 4 properties per page. How can I do the code? I know it's simple but I can't... Starting this is display result code: function displayResults($retVal, $timer) { global $config; $size = count($retVal); $header = $config["installbase"] . "/" . $config["header"]; include($header); printf("\t<CENTER><H2>%s</H2></CENTER>\n", $config["displayHeader"]); if ($config["timed"]) { //Time taken to locate all files. printf("\tFound <B>%d</B> properties in %d sec.<P>\n", $size, time() - $timer); } else { printf("\tFound <B>%d</B> properties.\n\t<P>\n", $size); } $i = 0; while($i <= $size - 1){ $locationp = $retVal[$i]["location"]; $typep = $retVal[$i]["type"]; $pricep = $retVal[$i]["pricez"]; $price = $retVal[$i]["price"]; $details = $retVal[$i]["details"]; $ref = $retVal[$i]["ref"]; $pic = $retVal[$i]["pic"]; $link1 = $retVal[$i]["link1"]; $link2 = $retVal[$i]["link2"]; Please I need help, anyone know hot to make that appears 4 properties per page, and automaticly appears page 1, page 2, page 3, page 4, page 5 depend of the property numbers. The href would be something like that: search.php?location=*&ptype=*&pricez=*&page=n? Please i hope someone can understand what i mean. I will very pleased if someone can help me. Thanks