What does a special set of tags do in PHP?

What does a special set of tags do in PHP?

What does a special set of tags do in PHP?

View Answers

November 13, 2010 at 2:53 PM

Hi,

The special set of tags <?php and ?> are use to display output directly to the browser. For example,

<html>
<body>
<?php
  echo "Hi all";
?>
</body>
</html>

Thanks









Related Tutorials/Questions & Answers:

Ads