The AL2 Blog

March 2, 2011

Purefootball.net goes live!

The AL2 blog may have been somewhat quiet over the last number of months, but there are simply two things to blame. Firstly, the arrival of AL2 Jr., and secondly the ongoing development of Purefootball.net

AL2 have been working closely for a number of months enhancing and developing the football / soccer (depends which side of the pond you are on) management simulator.

From developing a new match engine to innovating a new squad selection system, it’s all been happening. The site is now live, and the game is completely free to play so why night head over to Purefootball.net and show us your skills!

Filed under: Development,Freelancing,Programming — Andy Long @ 5:45 pm

August 23, 2010

www.buygojiberriesonline.com site from AL2

AL2 have helped another client develop an online store using the power of the Magento ECommerce platform.

Aiming to become the number 1 place to buy goji berries online, a custom design template by AL2 produces a simple and easy to use site, making the shopping experience for users both easy and enjoyable.

For the next few weeks the site is running a 15% off promotion for customers who sign up early.

We hope you enjoy the site, and maybe buy some goji berries yourself!

Filed under: Development,E-Commerce — Andy Long @ 3:33 pm

May 12, 2010

AL2 Team Up With www.buywholefoodsonline.co.uk

After a recent upgrade to their shopping cart software, following a sustained period of turnover growth, www.buywholefoodsonline.co.uk needed some specialist programming to integrate their needs into the store.

AL2 provided scripts that allowed the site to display specific delivery/dispatch information for each product, something not previously possible.

AL2 worked closely with Joe Cooper, the store developer. He said


Andy provided us with a quick and extremely effective solution. His work has allowed us to provide our customers with the information and shopping experience that will keep them coming back to us.

We have other features in mind for the future and will definitely be returning to AL2.

Filed under: Development,E-Commerce,Freelancing,Programming — Tags: , , , — Andy Long @ 11:01 am

April 7, 2010

Creating SEO-friendly URLs using PHP

If you’ve used WordPress or done much PHP developing you’ll probably be familiar with the concept of SEO-friendly URLs. That is, an informative link such as http://www.al2webdevelopment.com/blog/2010/04/07/creating-seo-friendly-urls-using-php/ which tell you nicely what the link is about, rather than something like blog.com?post=42.

There are plenty of functions out there that will create a friendly URL for you. This post shows you how to utilise one of these functions in a user friendly way.

This tutorial utilises the JQuery library, and uses its AJAX functionality, so you’ll want to make sure you are familiar with these before continuing.

Demo

Try a demo. This scenario assumes you are entering an news article title, but of course you can use it for anything you like. Try putting some punctuation in, and capital letters and you’ll see that these are nicely removed for you.

View demo

How it works

This feature uses a custom PHP function on a blog by asvin to create the URL. Let’s have a look at this function.

function friendlyURL($string){
    	$string = str_ireplace("'", "", $string);
			$string = preg_replace("`\[.*\]`U","",$string);
			$string = preg_replace('`&(amp;)?#?[a-z0-9]+;`i','-',$string);
			$string = htmlentities($string, ENT_COMPAT, 'utf-8');
			$string = preg_replace( "`&([a-z]) (acute|uml|circ|grave|ring|cedil|slash|tilde|caron|lig|quot|rsquo); `i" "\\1", $string );
			$string = preg_replace( array("`[^a-z0-9]`i","`[-]+`") , "-", $string);

			return strtolower(trim($string, '-'));
		}

This is all well and good, but how do we make it user friendly?

The Clever Bit

I decided to display the SEO-friendly URL on the fly, so the user can see it as it is being created. I also used it in a text field as we can assume it is being sent to a database, and it also gives the user the opportunity to edit the URL if required.

It does this by sending an AJAX request on the ‘keyup’ event on the top input box. As each character is entered, an AJAX request is sent, sending the article headline. The friendly URL is returned and entered into the URL text input field.

The Code

The HTML for the form..

The JQuery to make the magic happen…

$('#title').keyup(function(){
		//Create SEO friendly URL on the fly
		$.ajax({
			type: "GET",
			cache: false,
			url: "[php file location]?title=" + $(this).val(),
			success: function (msg){
			$('#seoTitle').val(msg);
			}
		});
	});

The PHP page that the AJAX calls…

	if($_GET['title']){
		$seoURL = friendlyURL($_GET['title']);
		echo $seoURL;
	}

There you go…

Utilising this code, you can now have an on-the-fly SEO-friendly URL generator!

Filed under: Development,Programming,SEO — Tags: , , , — Andy Long @ 8:18 pm

April 5, 2010

Convert MySQL DATE to PHP format

It’s often annoying to some PHP developers that the format of a DATE field in MySQL does not really correspond to anything immediately useful in PHP. Firstly it’s backwards, or at least different to a ‘typical’ date format of ‘DD/MM/YY’ or ‘MM/DD/YY’ (depending on which side of the Atlantic you are on!).

Not only that, but it’s often returned as a string, and has those dashes (‘-’) in . This is not really useful.

I remember spending a lot of time as a student PHP developer trying to work out how to convert from one to the other.

So here’s how you do it…

You have a string with dashes, and the date format is YYYY-MM-DD. All you need to do is use the in-built PHP split function to create an array with the fields we will need.

Let’s assume we are working with the date of September 13th, 2010. MySQL’s DATE datatype will store this as ’2010-09-13′. Let’s get PHP to handle this and make it useable.

    $date = '2010-09-13';
    $dates = split('-', $date);

So now we have an array ($dates) which contains the individual date fields as array items. The split function splits the string using the first parameter as a separator and the second parameter as the string to split. So this divides the $date string into 3 array items – the year, month and day values. For ease of use we can assign them to more verbose variable names.

  $year = $dates[0];
  $month = $dates[1];
  $day = $dates[2];

Now we are getting somewhere, and have the values that we need. Here, you can transform this into a Unix timestamp (which is what I use for most of my date and time handling. I’d recommend steering clear of DATE, DATETIME and TIMESTAMP datatypes unless you have a specific reason to use them – and that doesn’t happen very often). You can do with it what you will, but for the purpose of this demo will will make a Unix timestamp.

    $timeStamp = mktime(0,0,0, $month, $day, $year);

PHP’s mktime function creates the Unix timestamp on the parameters you give it. The first three parameters are for hour, minute, and seconds. So this creates a timestamp for midnight (the beginning of the day) on 13th September 2010. You can change these parameters statically or dynamically to suit your needs.

This will allow you much more freedom in performing date calculations in PHP now that you have converted it from the MySQL format.

It would also be recommended to wrap all of this up into a function. Here is the full code below in a function, taking the MySQL date as a single parameter and returning a Unix timestamp.

function mysqlDateConvert($mysqlDate){
  //Split the incoming date
  $dates = split('-', $mysqlDate);

  //Assign to variables from array
  $year = $dates[0];
  $month = $dates[1];
  $day = $dates[2];

  //Create the timestamp
  $timeStamp = mktime(0,0,0, $month, $day, $year);

  //Return the timestamp
  return $timeStamp;
}

You can now use this function to easily convert your MySQL dates into an easily useable PHP format!

Filed under: Development,Freelancing,Programming — Tags: , , — Andy Long @ 9:33 pm
Older Posts »

Powered by WordPress