Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~462 People Reached
Favorite Tags
php x 2
Member Avatar for aso186

Hi Everyone I have been searching the web and found a lot of information on mod_rewrite for creating 'good' URL's, such as 'hiding' query strings by mapping them to virtual directories e.g content.cgi?date=2000-02-21/article.cgi?id=46&page=1 to: content/2000-02-01/article46 (or similar) but I am finding it hard to digest all the information and extract …

Member Avatar for FBI
0
42
Member Avatar for aso186

The rewrite I'm using maps /products/string to products.php?product=string and the products.php is basically: [code] <header> <?php if(!isset($_REQUEST['products'])) {?> <a href="products/consumer-hardware>Consumer Hardware</a> <?php }?> <?php if (isset($_REQUEST['products']) && $_REQUEST['products'] == 'consumer-hardware') {?> <consumer-hardware details> <?php }?> <footer> [/code] Now the rewrite works, because I'm not getting a 404, but of course …

Member Avatar for bigattichouse
0
321
Member Avatar for aso186

I am relatively new to php and I want to create a basic page with dynamic content. So say I have a page called products.php that acts as an index to my products, a link such as products.php?product=box would go to a page with the particular details of 'box' and …

Member Avatar for JeniF
0
99