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
Printable View
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
You need to use:
<?php ?> tags:
Code:<html>
<body>
<?php
echo "Here is PHP!";
?>
</body>
</html>
thanks