why not use mod_rewrite to make dynamic urls appear static?
e.g.
http://sitename.com/products/Blue-Car/53/
would pass the following values:
products = product.php
Blue-Car = Product Name (string)
53 = Unique Product ID in Database
You can then use these strings/parameters as if they were passed like this:
http://sitename.com/products.php?Pro...r&ProductID=53
Read this aticle for more info:
URL Rewriting | redirecting URLs with Apache’s mod_rewrite || HTMLSource ]
search google for "mod_rewrite url" for more articles.