php generate html code example
Example 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;
?>
Example 2: set php var to html
<?php ob_start();?>
<div>Contents goes <b>here</b></div>
<?php $contents=ob_get_clean();?>