Guys, how do you think its best to create a site that you can update really easily.
On my page i have the sections:
Articles
News
* Projects
I am thinking that it would be best to have a form to add an article in. You can select weather it is a News item, article item or project item.
It is then put into a mysql database and if a user clicks on Articles then it goes :
Record 1: if its article output it
Record 2: if its article output it
... And so on.
The only problem with doing this is that you cant put any php in.
If you have <?php echo "hello" ?> in a mysql record it wont work, because you will be using php to output the contents of the mysql record.
I know i can use eval() but dont want to.
Does anyone have any other suggestions ?