Hello World !
Posted on Sunday, 12 August 2012
|
No Comments
<?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.
}
?>