untitled
0
Q:

how to intercalate html and php

<!DOCTYPE html>
<html>
  <head>
    <title>How to put PHP in HTML - foreach Example</title>
  </head>
  <body>
    <?php
        $employees = array(‘John’, ‘Michelle’, ‘Mari’, ‘Luke’, ‘Nellie’);
    ?>
    <h1>List of Employees</h1>
    <ul>
    <?php foreach ($employees as $employee) { ?>
        <li><?php echo $employee ?></li>
    <?php }  ?>
    </ul>
  </body>
</html>
0

New to Communities?

Join the community