Hi!
I am planning to set up a site totally database dependent, which means that all content should be placed in one mysql table, and grabbed by doing something like .php?cat=article&id=56.
Then the script formats the output using something like:
if ($cat = article) {
do mysql queries to grab article fields, and to display them on a article way.
}
the advantges doing this is of course that I can easy edit them, publish tme, and sorting/format them, and also of course I dont have to do so much template as I only use one file.
But is there any disadvantages? I can understand if the database gets rather slow later when I maybe have like 50 rows with huge content which the query has to go through.
ty