PHP – Step by Step
|
|
PHP is an HTML-embedded scripting language. Much of it”s syntax is borrowed from C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly.
PHP. Why is so popular?
The key power of PHP is that this scripting language is very popular in developers and therefore among in hosting service provider.
Mean reason for this is free/open source model for distribution of PHP. The main goal of this is cheap and easy serviceing and developing of internet applications.
Now let”s start from the beginning. Declaration.
You already know that the PHP is script language. This mean that the script execute on web server by parsing the code and returning to user static html code. Parsed part must be enclosed with <?php and ?> or <? and ?>
All static html tags are just sended to clients browser like they are on web page. But the PHP part (<?php…..?>) is executed on server and depending on code will output something to browser. In our case this will be nothing because we just have write comment code which do nothing for executing of application.
Please note that in older versions of PHP (<3.0) enclosed tags are <?php and ?> only
-
<html>
-
<head>
-
<title></title>
-
</head>
-
<body>
-
<?php
-
// Here is PHP code
-
?>
-
</body>
-
</html>
Comments in PHP
Like any other language PHP have code comment capabilities. You can see from code below tags for commenthing the code and how to use them.
-
<?php
-
// With two slashes together you can comment entire row of code to the next new line.
-
-
# This symbol also used for commenting all code on the row
-
-
/*
-
In this way the part of code
-
which is placed between this
-
starting and ending symbols
-
will be rejected from executing
-
on server
-
*/
-
?>
PHP : Hello world
Of course first example of our tutorial will be ”hello world” sample code.
-
<?php
-
echo "Hello world!";
-
?>
As you can see, the code above will just output "Hello world!" string.


You are totally right! We correct this. Thank you.
Sir, Plz Tell Me about PHP Step By Step
Dear Sir, Plz Tell me About Php
Here is an article you may find useful:
http://www.onlinehowto.net/Articles/About-PHP-the-language-for-beginners/63
Hi….
i have one question about your article…
u named it as a step by step PHP..
But where are the other steps??
as i didnt get any link to go on second step…
other thing is…
as many people will post a comment over here..
how to recognize the author between guest’s post…
please make two improvements…..
1). when ever you answer to my post i should get an email notification so that i can see the improvements or catch,things i need.
2). Make the author’s answer different from other comments, this will help us to identify the authorized answers easily.
Thanx..
This is such an amazing useful resource that you’re providing and you give it away for free. I really like seeing websites that perceive the value of providing a quality useful resource for free. Good work