PHP Intro
PHP is a server-side scripting language designed specifically for the web. Within an HTML page, you can embed PHP code that will be executed each time the page is visited. Your PHP code is interpreted at the web server and generates HTML or other output that the visitor will see.
A PHP file is just a HTML file saved using .php extension instead of .html or .htm extension, which tells the server to looking the page for code.
PHP is a language that can be used to create dynamic web pages, In fact that is the whole point of PHP.
Static Vs Dynamic web pages
A static web page never change, unless a person specifically edit the page.
A dynamic web page can be diffrent every time it is viewed by a browser because the sever edits the page prior to sending it to the browser accordingly to what instructions the programmer has coded into that specific page.
PHP was introduced in 1994. As of November 2007, it was installed on more than 21 million domains worldwide, and this number is growing rapidly. You can see the current number at http://www.php.net/usage.php
PHP is an Open Source project. PHP originally stood for Personal Home Page and now stands for PHP Hypertext Preprocessor.
A Simple PHP Script
<?php echo “Hello Web!”; ?>
Output: Hello Web!
Beginning and Ending a Block of PHP Statements
When writing PHP, you need to inform the PHP engine that you want it to execute your commands. If you don’t do this, the code you write will be mistaken for HTML and will be output to the browser. You can designate your code as PHP with special tags that mark the beginning and end of PHP code blocks.
shows four such PHP delimiter tags.
Tag Style | Start Tag | End Tag |
---|---|---|
Standard tags | <?php | ?> |
Short tags | <? | ?> |
ASP tags | <% | %> |
Script tags | <SCRIPT LANGUAGE=”php”> | </SCRIPT> |
Example 1 :
<? echo”Hello Web!”; ?>
Example 2 :
<?php echo”Hello Web!”; ?>
Example 3 :
<% echo “Hello Web!”; %>
Example 4 :
<SCRIPT LANGUAGE=”php”> echo “Hello Web!”; </SCRIPT>
You can also put single lines of code in PHP on the same line as the PHP start and end tags:
<? echo “Hello Web!”; ?>
Combining HTML and PHP
A PHP Script Incorporated into HTML
<html> <head> <title>Listing 3.2 A PHP script including HTML</title> </head> <body> <b> <?php echo “hello world”; ?> </b> </body> </html>
As you can see, incorporating PHP code into a predominantly HTML document is simply a matter of typing in the code. The PHP engine ignores everything outside the PHP open and close tags.
You can include as many blocks of PHP code as you need in a single document, interspersing them with HTML as required. Although you can have multiple blocks of code in a single document, they combine to form a single script. Any variables defined in the first block will usually be available to subsequent blocks.
Hii Anuj Kumar ji Thank you so much for sharing this tutorials and your projects.
one of the best php learning website. wonderful
Please give project on old age home system with php code and my sql data base
I will upload soon
Sir,
please post regarding REST API
I will upload it soon.
It is always wonderful to learn from the best sites……
thanks Anuj Kumar for your great work. this has really helped us to love programming at large. Great work to all PHPGURUKUL community
student fee management system (require)
Right now, It’s not available.
hey anuj. your blog is awesome and very helpful. there’s just one request of mine, can you please make a tutorial on cakephp? the way you present the concept is way more understanding than other blogs.
I will post soon.
THANKS
Nice one, to be the best IT personel in the world is by sharing with people your talent and you will never be forgotten, you are such a greate guy pleasee keep it up.
THANKS
I was reading some of your posts on this website and I believe this website is real informative ! Keep putting up.