I am starting a backend administration section for my site. Currently, when I have to make page for a new user, I just use notepad to copy the .html file and edit sections of it where the name needs to be then upload it. This is getting to be a real pain.
Can somebody tell me how I can do this with an administration page that submits data to a database then how I can get it to display this information? It seems like it would be very easy to do.
Would it be best to somehow create a separate page for each user? Or just have one page then call it something like users.php?name=billgates, users.php?name=stevejobs, etc.? If the second way, how can I make it through the backend area so people can't just go in and do users.php?name=johnholmes and pick anything they want?
Also, can I just use one MySQL database for several different things then just use separate tables? Or do I need to just use one database for each project?
John