I want to create a site where you can review different things in the town. Example could be a Restaurant, a park, a doctor, a school. The user creates review and uploads pic if he has. I want to create a new page for a new item. Basically it would be similar to what craiglist do. When you create a new ad, a new page is created, as in example below.
Does anyone know what framework craigslist is using?
How would I achieve this in PHP, MYSQL?
A side question. I know of one approach that I can take but I am a little reluctant on that. For example www.mywebsite.com/review.php?item_id=12. There is basically one page and the review is taken of out the database based on the item_id supplied. Is this approach better or the craiglist approach? In short
www.myreviewwebsite.com/review.php?id=123 vs
www.myreviewwebsite.com/12345.htm
Which one is better from marketing point of view, esthetic effect, functional, maintenance and more practical. (note I think I am going to create a separate question of no.3)