Added a README file
This commit is contained in:
parent
f5ffa1dab0
commit
0b0e7ff405
24
README.md
Normal file
24
README.md
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
simplog
|
||||||
|
=======
|
||||||
|
|
||||||
|
simplog is a (very) simply PHP blog engine. It's supposed to be implemented into an existing webpage since this in only the engine part and does not contain a ccomplete webpage/blog of any kind.
|
||||||
|
|
||||||
|
What's missing?
|
||||||
|
---------------
|
||||||
|
Pretty much everything, depending on how you plan to use it. simplog as of right now does not include anything to acually write/post blog posts. To create a blog post you have to manually create it in a MySQL database.
|
||||||
|
There is also no template to create the database as of right now.
|
||||||
|
As of right now the only thing it can do is to display posts already created.
|
||||||
|
|
||||||
|
What should the MySQL table look like?
|
||||||
|
--------------------------------------
|
||||||
|
To create a table to be able to work with this blog engine you need a table to look like this (name it "blog" since that's what I used in the code).
|
||||||
|
An int field called postnumber with auto increment.
|
||||||
|
A date field called date.
|
||||||
|
A text field called tile.
|
||||||
|
A text field called posttext.
|
||||||
|
|
||||||
|
Contributing
|
||||||
|
------------
|
||||||
|
Any contributions are welcome since this is a work in progress.
|
||||||
|
Add yourself to the THANKS file if you like to after contributiing to the project.
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user