Friday 12th of March 2010

PHP Tutorials For Dummies | Arrays()

January 25, 2010 by Ivan  
Filed under Articles, PHP, Programming

Arrays in PHP are very useful variables which can hold more than one data item. Imagine that you own a business and you want to store the names of all your employees in a PHP variable. It wouldn’t make much sense to have to store each name in its own variable. Instead, it would be nice to store all the employee names inside of a single variable. This can be done with array . Read more

Free PHP Code

November 25, 2009 by Marxman  
Filed under Articles, PHP, Programming

Looking  useful php codes? . Here’s a list of 12 absolutely essential PHP code snippets.

Read more

Passing Values In The Url With Php

April 27, 2009 by Ivan  
Filed under PHP, Programming

Here is simple php technique which will allow you to pass information between pages through the URL. The format used to pass variables in the URL is the url itself. Something like this:

www.domainname.com/index.php?variable_name1=the_value&variable_name2=the_value
Read more