First programm in php

, by Prashant Gunjal



echo is use to output strings just like printf() in c and cout in c++

Program :
<html>
<head>
    <title>Demo of echo</title>
</head>
<body>
<?php
    echo "Welcome to learn php";
?>
</body>
</html>

OUTPUT:


0 comments: