Jump to content

Creating a Blog


Gerbilkit

Recommended Posts

I am working once again on PHP/MySQL. And I decided to revive my old project of trying to code a blog. Problem is I'm not sure which direction I should go. Previously I stored articles directly in the database in text format. But now I am wondering whether it might be better to create a file to store the articles in and load them into a template with a PHP include statement.

Any feedback or advice would be appreciated.
Link to comment
Share on other sites

Well, let's put it this way. 50 MB would be extremely small for a database. Let's go mega-ultra-extreme and say that the database has a storage overhead of 10 MB, so you've only got 40 MB of room for storing blogs. The Dilbert blogs I looked at (the only blogs worth reading, IMO) were averaging just under 3000 characters. Just for the fun of it, we'll say your blogs are 4096 characters (a nice round number) and that you're using ASCII and not some funky character encoding. So your blogs are 4 KB apiece. 4 KB / blog, 1024 KB / MB, 40 MB total storage space - it all adds up to 10, 240 blogs. Enough for 28 years of blogging.

In summary, use a database. You've got nothing to worry about.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.