does anyone know how to show more than 10 results per page with the dp site search tool? what should i change in this code: if ($urls['end'] - $urls['start'] < 9) $urls['results'] = $urls['end']; if ($urls['results'] > 10) { if ($start < 40) { $x = 0; } else { $x = round (max (0, min ($start - 40, $urls['results'] - 96) / 10)); } for ($i = $x; $i < $x + 10; $i++) { if ($i != round ($start / 10)) { echo '<A HREF="search.php?q=' . urlencode($q) . '&start=' . ($i * 10) . '">' . ($i + 1) . "</A> "; } else { echo ($i + 1) . " "; } if (max (10, ($i + 1) * 10) >= $urls['results']) break; } echo '<BR>'; thanks
I'm just curious because i have the same error and i was curious as to what your statement of "Unfortunately it's not possible because the Google API has a limitation of 10 results per query" means? Does that mean that i can't use your search tool? or do i have some thing incorrect?