Introduction to PHP

23 17
Read Time:53 Second

PHP is a server side language , and is a powerful tool for making dynamic Websites.
PHP stands for  Hypertext Preprocessor

It is a widely-used because it is free (open source) and efficient alternative to competitors such as Microsoft’s ASP. Also PHP can be embedded into HTML.

Here is simple example to print welcome to world of php.

<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”
    “http://www.w3.org/TR/html4/loose.dtd”>
<html>
    <head>
        <title>Example</title>
    </head>
    <body>

        <?php
            
echo “Welcome to world of php.”;
        
?>
    </body>
</html>

About Post Author

Vishal Barot

Hi there, Vishal Barot here. Full-time web developer and graphic designer with over 10 years of experience. I've been experimenting with web development since I was 17 years old. If you are looking to have a professional website or design then I can develop it for you. Looking forward to working with you.
Happy
Happy
16
Sad
Sad
8
Excited
Excited
10
Sleepy
Sleepy
13
Angry
Angry
7
Surprise
Surprise
11

Leave a Comment

Your email address will not be published. Required fields are marked *