Forum Moderators: coopster
Do I need to just build my own using php & mysql?
Is there a way to embed a portion of the blog into a div?
Any help would be much appreciated. Thanks all!
Try making a directory called /blog (where / is your root directory (where your homepage is)). Then .htaccess protect that directory.
Inside your /blog directory, make an index.php file and a display.php file.
In your index.php you can make the commands to add, edit or delete blog entries. I suggest using php cases inside the index.php file to refer to different actions (like adding and editing) then you won't have to have edit.php, add.php etc files.
With the display.php file, you have a mysql query to look at the blog posts and put them into an HTML format.
Back in your root directory, call display.php and it should display your blog