Home > PHP

PHP

Generating random alphanumeric characters in php

Friday, 17 August 2012 Category : 0

Random alphanumeric characters may be used in many parts of a script such as renaming an uploaded file or creating a user registration validation mailing system.

How to make BB Codes in php

Wednesday, 15 August 2012 Category : 0

This is a tutorial on How to make BB Codes in php, it will be a function, which will replace BBCodes to HTML tags. Lets see how to do the stuff.

How to strucutre arrays and multidimensional arrays in php

Sunday, 12 August 2012 Category : 0

Arrays with two or three indexes with values are easy to build. But when it comes to make a multidimensional array, if not structured properly, you’ll confuse what values correspond to what index.

Hello World !

Category : 0

<?php

if ($someone = "is seeing this"){

$print = 'Hello All.';
$print .= 'I am Umar farooque';
$print .= 'a student and a web developer.';
$print .= 'I like to design and program websites.';
$print .= 'I created this blog to share my ';
$print .= 'hobby with all techies and ';
$print .= 'other web developers.';

echo $print;

} else {
//Silence is golden.
}
?>

Powered by Blogger.