Hi,
I am using Dreamweaver CS3 to develop a site where records span over multiple pages. I use .htaccess to tidy up the urls which works fine for the 1st page. However, using the built in functionality in DW to go to the next pages it goes back to the old ugly urls e.g.
http://www.site.com/country.php?pageNum_fpark=1&totalRows_fpark=568
&Country=england
The code that generates this is:
<td><?php if ($pageNum_fpark < $totalPages_fpark) { // Show if not last page ?>
<span class="content"><a href="<?php printf("%s?pageNum_fpark=%d%s", $currentPage, min($totalPages_fpark, $pageNum_fpark + 1), $queryString_fpark); ?>">Next</a>
<?php } // Show if not last page ?> What i'd like it to do is display
www.http://www.site.com/england-2.html
I have worked out the .htaccess bit fine but just cant seem to get DW to display the page number only with out the other bits.
I would be very grateful for any pointers on this.
Thanks
Simon

