I need to create categories, but the pattern in the url doesn't distinguish the categories.
For example:
I have 1 PHP page for viewing a 'service' or a 'product' by passing an ID, i.e. view.php?id=100. view.php will select that record from the database and return the page. The page can display something like [Service] or [Product] based on one of the columns in the record.
Any ideas other than having to pass the category in the query string?
For example:
I have 1 PHP page for viewing a 'service' or a 'product' by passing an ID, i.e. view.php?id=100. view.php will select that record from the database and return the page. The page can display something like [Service] or [Product] based on one of the columns in the record.
Any ideas other than having to pass the category in the query string?
Comment