Jump to content

Help implementing A Blog!


Trium918

Recommended Posts

I have never written a script for a blog. I was wondering could someone

help me get started. What I mean is, could someone please explain to me

what is needed in order to implement a blog? How many database tables,

columns,and what type of database fields etc?

 

Note: I am aware of free blog, but I would like to write my own. Thanks.

Link to comment
https://forums.phpfreaks.com/topic/57528-help-implementing-a-blog/
Share on other sites

think of the form what your asking ok.

 

1  name.

2.  blog title.

3.  blog message.

4.  date

5.  ip

6.  band words

 

now u also add more and the more the better ok

then were sort the database out.

 

ask ur self does a user need a account?

ect ect ect................

Tables

    user

    blog

    comments

   

user table

    userid

    username

    password

    email

    status (registered, activated?)

    level  (mod or admin)

    date_registered

    last_seen

   

blog table

    blogid

    userid

    title

    blog

    allow_comments

    options (parse html parse bbcode etc)

    date_created

 

comments

      commentid

      userid

      blogid

      comment

      date_commented

 

 

There is a basic layout for you.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.