Archive for Development

Word separators in URLs

In the world of web development and search engine optimisation you find this topic is frequently discussed, yet often without any reasoning or conclusion. Therefore the purpose of this article is to investigate why.

So, let’s start at the very beginning, and find out what “word separators” actually are, and why we need them in URLs.

Traditionally a word separator is a space, yes, an every day space you create with your space-bar key.

The problem with using spaces in URLs is that when the URL is utilised in a browser (for example), the URL is encoded using percent encoding which causes spaces to appear as the encoded “%20”, resulting in an ugly URL formation which is humanly difficult to read.

ie: http://www.example.com/percent%20encoding

How do we overcome the problem? Over the years a workaround has developed…

…the dash, no the hyphen, no in fact it’s the minus sign (yes, I mean this “-” symbol)…

ie: http://www.example.com/not-percent-encoding

Read the rest of this entry »

Comments (1)

Transfering domains from Godaddy.com to TuCows OpenSRS

I need to transfer a bunch of domains from Godaddy (aka Godamnannoying) to TuCows (aka OpenSRS), surly it can’t be that difficult? Right?

I found that there were lots of articles on how to transfer to Godaddy, but not how to get out. This is a short guide on how to transfer away from Godaddy, in this case we will be transferring to OpenSRS.

This guide is appropriate for .com, .net, .org, .name domain names.

Read the rest of this entry »

Comments (12)

PHPbase web framework

What is the PHPbase web framework?

PHPbase web framework (also known as PHPBase 0.0.1) is a PHP based frame work library for building websites, originally written in 2003.

Note: This framework is old, very old, dating back to 2003, however it does work in php4, for php5 I recommend ezcomponents, also take a look at symfony, however this is not as highly rated, also check pear.

Read the rest of this entry »

Comments (8)

Developing a Facebook Application on PHP4

I want to create a facebook application, however currently all my production servers run PHP4.

Ultimately the project will be appear on your Facebook profile as a profile box.

I’m writing this while I begin creating my facebook application to assist people in a similar situation to myself.

Read the rest of this entry »

Comments (10)

PHP coding standards and best practices

I have been using PHP for a long time now, it’s a very flexible language, and is a good platform.

Over the years PHP coders have gotten a very bad reputation mainly due to poor coding and not escaping SQL.

Read the rest of this entry »

Comments

« Previous Page« Previous entries « Previous Page · Next Page » Next entries »Next Page »