PHP

Str_repeat Function in PHP

January 2, 2011

Thumbnail image for Str_repeat Function in PHP

This function is used to repeat a string fixed no of times. It accepts two parameters : a) a string to be repeated b) no of times it is to be repeated <?php //string to be repeated $a=”devlup”; //result $r=str_repeat($a,20); echo $a; ?>

How to :Encrypt a string using One-way Encryption in PHP

January 2, 2011

Thumbnail image for How to :Encrypt a string using One-way Encryption in PHP

We can do one-way encryption through Crypt function in PHP . Generally it is used in password verification . Since it is one way encryption we can’t able to get original password.

Face detection using PHP

November 20, 2010

Thumbnail image for Face detection using PHP

Face detection is a simple technique to highlight a face in a photograph.You might have used automatic face detection in Picasa web albums that can be easily done using the PHP script.

How to: Install Apache Server on Windows

November 9, 2010

Thumbnail image for How to: Install Apache Server on Windows

The Apache HTTP Server is a powerful and flexible HTTP/1.1 compliant web server. Originally designed as a replacement for the NCSA HTTP Server, it has grown to be the most popular web server on the Internet. As a project of the Apache Software Foundation, the developers aim to collaboratively develop and maintain a robust, commercial-grade, standards-based server with freely available source code.

How to create URL shortener using PHP

August 28, 2010

step by step tutorial to create URL shortener using PHP.