Hello
I am new to the world of creating dynamic web pages using PHP and Mysql.
I want to create a new web site.
I could just create this website, the good old way using a html editor and upload it to a webserver.
Because this website will contain a huge amount of pages and it would be impossible to maintain using static html,
such approach will also make it difficult to do regular updates.
I want to store the sites information on a database, hence why I am exploring the dynamic route.
Unlike most dynamic websites.
I do not want the sites visitors to fill in forms, select drop boxes or anything like that to be able to access the database.
Suppose my site was a travel-site that display’s information to visitors when they click a city link. Like his.
http://www.travel.com/london
http://www.travel.com/paris
http://www.travel.com/tokyo
Using static html I would simply upload a page for these cities to the correct location and that’s it.
I want to achieve the same thing dynamically with the cities information been retrieved from the database depending on which link was clicked.
So basically the PHP code should query and return a result from the Mysql database using the city name in the url.
Is this possible? and if so how would I go about achieving this.
If anyone can provide a PHP script that I can adapt that would be awesome.
Thanks