Menu

PHP TUTORIALS - PHP Introduction

PHP Introduction

ADVERTISEMENTS

"Hello World" Script in PHP:


<html>
<head>
<title>Hello World</title>
<body>
    <?php echo "Hello, World!";?>
</body>
</html>

ADVERTISEMENTS


Hello, World!

ADVERTISEMENTS


<?php PHP code goes here ?>

<?    PHP code goes here ?>

<script language="php"> PHP code goes here </script>