Category PHP, Tutorials ~ April 20th, 2009

Title: PHP Date Function
Author: Sazzad Hossain
Language: PHP
Summary: Many people began sending me pm’s on how to do certain things in php. Instead of answering all of them, I thought why not create a thread where people can post the basic functions of php. Here I am talking about a very important php function: php date. I use this function for many purpose, but here I’ll just explain the general purpose/use.

Continue reading »

  Category PHP, Tutorials ~ April 1st, 2009

Title: Text Over Image
Author: Sazzad Hossain & 2-Job.
Language: PHP
Demo: http://2-job.com/email/
Summary: In this tutorial, we will learn how to create a script that will place text on an image (kind of like a watermark). In this tutorial, we will be using a form which we will use to submit our text. This technique is often used for adding copyright to images and or creating cool image based signatures. To make it easier for us to understand, I will be focusing this tutorial on creating a script that will help us generate a e-mail signature.

Continue reading »

  Category PHP ~ August 13th, 2008

Title: Counter Script
Skill Level: Intermediate
Author: Sazzad Hossain
Demo: http://jorsek.info/tcounter/
Authors Note: In this tutorial, we will learn how to create a very simplified counter script. Unlike the general counter scripts, here we will also have a general page view counter, unique view counter, total users online and users viewing current page.

Continue reading »

  Category PHP ~ August 13th, 2008

Title: php Includes
Skill Level: Basic
Author: Sazzad Hossain & RIT webDEV club
Demo: This site uses includes
Authors Note: PHP is perhaps one of the simplest language you can earn that can grant you much freedom with your site. In addition, it can also make your life a lot easier. If you are a web-designer you will see why. First of all, php has many functions that allow you to substitute for a long list of codes. For example, in this tutorial I will talk about php include. What php include basically does is takes an entire page of coding from one location and brings it to the page where you requested it. So if I have a head section located in “/include/head.php” and I want it to show up in my index.php file; all I have to do is call for it using php include.

Continue reading »