PDA

Click to See Complete Forum and Search --> : easy newbie question: (for PHP)


dimava
Aug 28th, 2000, 08:01 PM
you know how in html you write:


<html>
html code
</html>

what do I do in PHP

like
<php>
</php>
that doesn't work

thanks in advance


dimava

parksie
Aug 29th, 2000, 02:54 PM
You need to use:
<?php ?> tags:

<html>
<body>
<?php
echo "Here is PHP!";
?>
</body>
</html>

dimava
Aug 29th, 2000, 02:55 PM
thanks