Hello world in php
Posted by chaabant on Dec 26, 2007
Those are some ways to make a Hello world in php
-
<?
-
echo " Hello world !" ;
-
?>
Hello world in php using Variables
-
<?
-
$txt = "Hello World !" ;
-
-
echo $txt ;
-
?>
Hello world in php using Functions
-
<?
-
-
function hello () {
-
-
echo " Hello World !! ";
-
-
}
-
-
hello();
-
?>
Posted in PHP BASICS || No Comments »
Welcome to Tutorials 4 PHP
Posted by chaabant on Mar 25, 2006
Welcome to Tutorials 4 PHP .
This site is still under construction ,I will start from A to Z in php .
Hope this project will help the Web Community understand how php works . I have other projects that will run with this project , like tutorials for html and tutorials for javascript .
If you have any question , use the contact form at the top of the page .
Good Luck .
Tarek .