Page 1 of 1

PHP - Ce este PHP?

Posted: 12 Sep 2013, 14:41
by MytzaMytz
______________________________________________________________________________
Definitie PHP

PHP sau Hypertext Preprocessor este un limbaj de scripting de uz general, cu cod-sursă deschis si care este potrivit în special pentru dezvoltarea aplicațiilor web și poate fi integrat în HTML.
______________________________________________________________________________
Exemplu

Code: Select all

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 

Transitional//EN" "http://www.minecraft-romania.com">
<html>
    <head>
        <title>MC-RO</title>
    </head>
    <body>

        <?php
        echo "Salut, bine ai venit pe MC-RO!";
        ?>

    </body>
</html>
______________________________________________________________________________