<!DOCTYPE html> <html> <body> <?php $txt1="Learn PHP"; $txt2="www.layui1.com"; $cars=array("Volvo","BMW","SAAB"); echo $txt1; echo "<br>"; echo "Study PHP at $txt2"; echo "<br>"; echo "My car is a {$cars[0]}"; ?> </body> </html>
<?php $txt1="Learn PHP"; $txt2="www.layui1.com"; $cars=array("Volvo","BMW","SAAB"); echo $txt1; echo "<br>"; echo "Study PHP at $txt2"; echo "<br>"; echo "My car is a {$cars[0]}"; ?>