Razormedia CMS - Boardroom Project
##################################
Razormedia CMS - Boardroom Project
##################################
This thread is for ideas, updates and suggestions to improve the CMS for the boardrooms first project.
The initial files are available here.
The CMS can be viewed here.
The PHP code is very simplistic and at the moment is not commented, I will get round to this in the next few days.
The database used is a MYSQL database. The table currently has two fields, these are:
- pnumber - integer (3 digits long - primary key auto incrementer)
- ptext - text
The SQL to set up the database table is:
Code:
CREATE TABLE cms (
pnumber int(3) NOT NULL auto_increment,
ptext text,
PRIMARY KEY (pnumber)
) TYPE=MyISAM;
Currently, there are 5 options, you can:
[list=1][*]Add an item[*]Edit an item[*]View an item[*]Delete an item[*]Upload a file[/list=1]
Obviously, this is quite limited in what we can do. We are simply adding a text item into the database, be it html or simpy raw text. This can be output as a text string which flash could read and parse.
So where do we go now, what features should be added / deleted / edited?
Comments appreciated, as are bugs found etc (I'm new at PHP).