Answers for "how to use php in html file"

PHP
1

load php in html

//Safe as:
index.html
number.php

//HTML:
<html>
   <head>
      <title>Home</title>
   </head>
   <body>
      <h1>Phone Number</h1>
      <?php include('number.php') ?>
   </body>
</html>

//PHP:
<?php
   echo 4895553268;
?>
Posted by: Guest on October-30-2020
0

can i write php code in html file

<div>
  <?php echo "This is printed by PHP"; ?>
</div>

<div> 
	<?php $sum = 5+2; echo $sum; ?>
 </div>
Posted by: Guest on May-24-2021

Code answers related to "how to use php in html file"

Browse Popular Code Answers by Language