RSS

Php ereg_replace() function

Final Image
0 Comments | This entry was posted on Apr 15 2011

What is ereg_replace() function? This function scans string for matches to pattern, then replaces the matched text with replacement, this tutorial is well explained with 9 Examples.

Php and Mysql Count() Function

Final Image
5 Comments | This entry was posted on Nov 14 2010

Count all elements in an array, or properties in an object, This is particularly useful for counting all the elements of a multidimensional array. The default value for mode is 0. count() does not detect infinite recursion.

Insert and Select data from Mysql Database

Final Image
0 Comments | This entry was posted on Nov 11 2010

In this tutorial i will teach how to INSERT and SELECT data from a MySql Database, this is a beginner tutorial, this tutorial will also teach you the using of @mysql_fetch_array Function in PHP.

Php date() Function With Examples

Final Image
0 Comments | This entry was posted on Nov 09 2010

The PHP date() function formats a timestamp to a more readable date and time. PHP time stamp is a numeric value in seconds between the time at present and the value at Unix Epoch (January 1 1970 00:00:00 GMT). This time of January 1 1970 00:00:00 GMT is taken as base for all time stamp calculations.

What is Php Functions and How to create a Function?

Final Image
1 Comment | This entry was posted on Nov 09 2010

A function is just a name we give to a block of code that can be executed whenever we need it. This might not seem like that big of an idea, but believe me, when you understand and use functions you will be able to save a ton of time and write code that is much more readable!