• RSS
  • Print this article!
  • Digg
  • del.icio.us
  • DZone
  • Facebook
  • Mixx
  • Google Bookmarks
  • Design Float
  • Reddit
  • StumbleUpon
  • Technorati
  • Live
  • TwitThis

Archive

Posts Tagged ‘php’

Beginners Guide to jQuery Sorting Part 2

September 3rd, 2009

In the last tutorial we covered how to reorder a list by dragging and dropping.  In this tutorial we will show how to save the order of the list via Ajax.

Read more…

Is Your PHP Code Secure?

August 16th, 2009
Comments Off

There are quite a few malicious users out there.  If you haven’t considered your backend security, your website could be in a world of trouble from attacks.  This is a beginners guide to what the bare minimums are when it comes to security.

Read more…

Beginners Guide to Using AJAX with jQuery Part 2

August 9th, 2009

In a previous tutorial we showed how to use AJAX with jQuery.. We created a simple input box that outputs info from the server after each character you type in.  In this tutorial we will take one step further and create an auto complete feature, much like Google or Yahoo’s  search box.

Read more…

Beginners Guide to Using AJAX with jQuery

July 29th, 2009

AJAX offers users a seamless way to work with your interface, no waiting for whole pages to load.  jQuery has a set of tools to make it super simple to implement. We will walk you through how to use jQuery to connect to PHP so you can step up your user interface.

Read more…

Easy Thumbnails with PHP

July 15th, 2009

Don’t hassle with image processing software if you don’t have to.  This post will show you how to automate your thumbnail making with PHP.

Read more…

Author: Shawn Categories: Back End, PHP Tags: ,

How To Compress CSS/JavaScript Files With PHP

July 7th, 2009

A quick way to speed up your site is to simply limit how much the user has to download. This tutorial will show you how to automatically gzip (compress) your files with PHP.

Read more…

Author: Shawn Categories: Back End, How to, PHP Tags: , ,

Reasons Why You Should Use a Function

June 11th, 2009

When is a good time to use a function or a method? Here is a list of reasons when you should use them.

Read more…

Factory Method Design Pattern in PHP

June 1st, 2009
Comments Off

What is the Factory Method Design Pattern? and why should I use it? First off we should look at what a design pattern is. If you’re not sure you can visit: Design Patterns: Soliving web development problems and Singleton Design Pattern: When one instance is enough. It might help you get a grasp on design patterns.

Read more…

Singleton Design Pattern:When One Instance is Enough

May 26th, 2009
Comments Off

A design pattern that allows you to make sure there is only one instance of a class. This is uber-important for fast and efficient code. You no longer have to worry if you created an instance somewhere that wasn’t cleaned up afterward (i.e database connections). Big time stress relief. If you have never used a design pattern or don’t know what one is you can check out this previous article that can walk you through it.

Read more…

Design Patterns: Solving Web Development Problems

May 21st, 2009
Comments Off

Are you not sure how to structure your code? Have you come across a problem that makes life difficult. Odds are many developers have been in your situation before. Design patterns are the antacid of the development world…finally relief.

Read more…