2 April, 2015

Making a Blog URL, SEO Friendly With PHP
By: Matthew Jackson

The key to having a SEO friendly url is pretty simple. You want the title, which describes the article to be the url. Atleast that is the simplest way to do it.... It is much better than the id value of your blog.

Either way you want to format the text as follows:

function getSeoUrl($string) {
    //Lower case everything
    $string = strtolower($string);
    //Make alphanumeric (removes all other characters)
    $string =...

Tags: Blog, PHP, SEO

Read More
28 January, 2015

Creating a Blog with PHPixie, Part 1
By: Matthew Jackson

     We assume that you have a limited knowledge of Phpixie, and you can login (ie: users). You can see how to authenticate and have a user here. You can ignore most of the user code if you prefer to have your blogs editable or postable by anyone.

     Creating a blog first means creating the database layer. We will show you a simple, but we feel effective database table based off not just our own knowledge, but what we found available on the web as...

Tags: PHPixie, PHP, Blog

Read More
1