Good Morning Everyone...
I hope everyone is getting ready for a great summer holiday weekend...
Here is my issue:
On the list page, we can chose the number of records to display per page. I have customer who want to display more that 500 records per page. I did the following simple changes:
<TD class=bl><STRONG> Records Per Page: <select
onChange="java script: document.location='titles_list.php?pagesize='+this.options[this.selectedIndex].value;">
<option value="10" {$rpp10_selected}>10</option>
<option value="20" {$rpp20_selected}>20</option>
<option value="30" {$rpp30_selected}>30</option>
<option value="50" {$rpp50_selected}>50</option>
<option value="100" {$rpp100_selected}>100</option>
<option value="500" {$rpp500_selected}>500</option>
<option value="1000" {$rpp1000_selected}>1000</option>
<option value="1500" {$rpp1500_selected}>1500</option>
</select>
</STRONG></TD>
It displays the 1000 or 1500 if I chose them, but the selector box shows it the chose, but after the page refreshes, the selector box goes to "10" instead of staying at 1000 or 1500 when I selected it. I mean the page will continue to display that number of records per page that I chose, but the record selector just keeps displaying "10".
Can anyone help me?
Thanks
Mike