PHP代码练习Demo02

发布时间 2023-07-21 11:53:24作者: 是程序喵哇
<!DOCTYPE html>
<html>
<body>

<?php
echo "<h2>PHP is fun!</h2>";
echo "hello world";	
echo "I'm about to learn PHP! <br>";
echo "This", " string", " was", " made", " with multiple parameters.<br><br>";

$text1 = "Learn PHP";
$text2 = "w3School.com.cn";
$cars = array("volvo","BWM","SAAB");

/*echo "<br>$text1";
echo "<br>";
echo "Study PHP at $text2 <br>";
echo "MY car is a {$cars[0]}";
*/
print "<h2> PHP is fun</h2>";
print "hello world";
print "I'm about to learn PHP";
print "<br>$text1";
print "<br>";
print "study PHP at $text2<br>";
print "my car is a {$cars[0]}"
?>

</body>
</html>