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. This blog is a space where I share insights, experiences, and knowledge about the digital world. From programming languages I’ve mastered to internet scams and fraud to watch out for, you’ll find a mix of practical tips and cautionary tales. Whether you're a fellow developer, designer, or just a curious reader, I hope my posts provide value and spark your interest.
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 *

Scroll to Top