Skip to main content
Nov 23, 2012

jsFiddle for your debugging needs

We all love JavaScript and what it can do, especially the various frameworks created to make the life of a developer easier. However, with scripting comes debugging, and debugging can take a lot of time.
#css  #javascript  #jquery  #tips
Jun 20, 2012

Custom Form Fields in Joomla

When I was developing my Joomla! components to make my GRealty suite I needed a few custom fields that were not native to Joomla The process is simple and only requires one new folder and one new file in your component. In your components admin/models/  folder create a new folder called 'fields'.
#joomla  #php  #tutorial
Jan 22, 2012

Simple PHP Calendar Script

Here is a simple PHP calendar script that can be easily customized and designed with CSS.
<?php

$time = time();

$numDay = date('d', $time);
$numMonth = date('m', $time);
$strMonth = date('F', $time);
$numYear = date('Y', $time);
$firstDay = mktime(0,0,0,$numMonth,1,$numYear);
$daysInMonth = cal_days_in_mo
  
#php
Dec 04, 2011

Achievements - Winning the Internet

Achievements seem to be popping up in every new web service. Why? Because achievements make you win the Internet. Okay, not really, but it does make your user feel more engaged into your web site. It gives the user a reason to use your site and do more things on your site. The best part is the achievements do not even need to be all that difficult.
#tips  #web
Nov 28, 2011

Mobile Geolocation

With the new wave of mobile devices being a major way to access the Internet, it has become possible to customize web applications based on a user's location - or create web applications based on user location.
#geolocation  #mobile  #mysql  #php
Nov 26, 2011

Sanitize Text for SQL

Cross Site Scripting (XSS) and SQL Injections are some of the biggest security threats to a PHP application.  Every developer has different ways of preventing SQL Injections or malicious JavaScript from being inserted into the database.
#php  #security  #tutorial  #xss
Nov 26, 2011

Setting Cookies with PHP

If you plan on building a PHP application, you'll probably end up using cookies, especially if there are user accounts. Cookies will allow you to store specific data for a certain amount of time.
#cookies  #php  #tutorial  #xss
Nov 26, 2011

EasyPHP - WAMP environment

The easiest way to learn PHP is to be able to create and edit code and see instant results. When I was younger and learning I couldn't afford to have my own web server so I installed a WAMP environment - I also didn't have a spare machine laying around to toss Linux on.
#apache  #easyphp  #mysql  #php  #wamp
Nov 24, 2011

PHP Mail Class

Mailer is a PHP class to help provide easier use of the PHP mail() function and error support. In all other of my scripts using the mail() function I would have lines upon lines of code just to make sure every thing sent right and provide my own error checking.
#class  #php  #script
Nov 24, 2011

PHP Server Variables

I know when I first started out learning PHP it was difficult finding good examples or live demos of simple PHP in use. Often I'd have a large number of files used to demonstrate built in PHP functions.
#php  #tutorial  #web