What does a special set of tags do in PHP?
Hi,
The special set of tags <?php and ?> are use to display output directly to the browser. For example,
<?php and ?>
<html> <body> <?php echo "Hi all"; ?> </body> </html>
Thanks
Post Answer
Preview:
Ads