Stable release: 7.3.11 / October 24, 2019; 1 day ago
Preview release: 7.4.0 RC4 / October 18, 2019; 7 days ago
Developer: The PHP Development Team, Zend Technologies
Typing discipline: Dynamic, weak since version 7.0: Gradual
Designed by: Rasmus Lerdorf
The php code can be embedded into html code just as an example given below -
basic.php
<html>
<head>
<title> Basic Example </title>
</head>
<body>
<?php
echo "This is php code embedded into html";
?>
</body>
</html>
similarly html code can be embedded in php code as follows -
example.php
<?php
echo "<b>"."using html in php"."</b>";
?>
Comments
Post a Comment