Hello.
After several years I've finally decided that I should learn how to code a simple blog using PHP. I just want the most basic things: REGISTER, POST, DISPLAY, ARCHIVE (and probably COMMENT).
Can anyone help me?
Thanks.
I am not sure you can code "SIMPLE" blog because you need lot of things. Maybe is better solution to use some finished free blog.
Sonam
You can't learn to code a simple Blog. You can learn to code something simple. A blog asks a lot of coding. I recommend that you start by coding something like an address book first or something, thats what I did first.
a blog like that is simple, but if you don't know where to start you should probably start by making more simple stuff.
I'd recommend starting with a form where you submit data and put that in a mysql database (the blogging). Then learn how to do logins with sessions (other ways are possible but this is the best for a blog in most cases). If you can do those two things you can combine them and you already have your blog (almost).
When you got that you can start with sanitizing data and other security stuff. Then do the comments, and put the blog online (not before you learn how to use mysql_real_escape and escape html tags).
rofl
that's a bad way to do that, and you should use code tags when posting code.
I'd suggest using themes only when you know how to work with sessions, know some basics about design (not graphical but architectural) and have seen how other do it. The way radiation handles themes they have minimum added value.