In: PHP
24 Feb 2010What is an Array?
An array is a data structure that stores one or more values in a single value. A variable can store only one data in memory. When we need to store more than one values we use Array to store data. Array understand data by its index. It’s a collection of elements having [...]
In: PHP
16 Jan 2010“This tutorial is very best for OOP beginners. I found it’s very best. I think it will help all beginners who want to start OOP.”
by Kevin Waterson
Contents
What is OOP
What is an Object
What is a class
Commenting code
Inheritance (Extending a class)
Visibility (public, private, protected)
Final
Abstract Classes
Static Methods and properities
Interfaces
PHP Class Functions
get_declared_interaces()
get_class()
class_exists()
get_declared_classes()
Autoload
Serializing Objects
Overloading
Class Constants
Credits
In: PHP
31 Dec 2009Login System is the First Part of Security system in web programming. In this tutorial I am going to show you the collection of various methos and types of login system. I will give a right choice for your system and you can understand more about login.
1. Making A Cool Login System With PHP, MySQL [...]
“CodeIgniter is a powerful PHP framework with a very small footprint, built for PHP coders who need a simple and elegant toolkit to create full-featured web applications. If you’re a developer who lives in the real world of shared hosting accounts and clients with deadlines, and if you’re tired of ponderously large and thoroughly undocumented [...]
In: PHP
11 Nov 2009In this tutorial I am going to show you how you can develop a simple CMS (Content Management System) in a very quick and easy way. In this tutorial I have used table for layout. You can use your CSS style for develop your CMS.
Let’s begain with Database.
Create Database CMS for your CMS site
Copy and [...]
In: PHP
2 Oct 2009In this tutorial you will learn to upload image file using PHP. Together you will learn to restrict file type. In this tutorial I am showing you example in which you can upload only jpg/jpeg images. It a very easy method I am going to show you and hope you will understand.
Start With Form :
<form [...]
In: PHP
21 Sep 2009Session is global variable which mainly use to send data from one page to another. Session variables allow you to store “global” data for use by all your pages and are specific or unique to each visitor to your site.” Using sessions you can transfer data between various pages. If you are using sessions then [...]
In: PHP
27 Aug 2009I already have posted 2 articles in delete multiple records using Checkbox. You can see here. Here I already have posted one article about php pagination (You can see here). In this tutorial I have added paging in the previous code on the request of my readers. Now lets start here.
Start PHP code:
Here I have [...]
In: PHP
26 Aug 2009I want to start this tutorial in step by step metod. Here first of all lets link jQuery:
<script type=”text/javascript” src=”../jquery-1.2.1.js”></script>
Now add javascript function:
function addNumbers() {
var number1 = $(’#number1′).attr(’value’);
var number2 = $(’#number2′).attr(’value’);
$.get(”giveMeSomething.php”, { number1: number1, number2: number2 },
function(data){
alert(”Data Loaded: ” + data);
});
}
Here var number1= $(’#number1′).attr(’value’); we get the calue from the first field in our page. [...]
In this tutorial you will learn to select a top level category from one select box and to automatically populate the sub-category. If you are familiar with using select boxes for categorisation and sub-categories, jQuery can hugely simplify this task by adding a dash of AJAX.
In this method once the top level category select [...]
