You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
537 B

<!DOCTYPE html>
<html>
<head>
<title>php basics</title>
</head>
<body>
<?php
$x = 25;
$y = 10;
$z = $x + $y;
?>
<p><?php printf("\$z=%s", $z); ?></p>
<?php $z = $x / $y; ?>
<p><?php printf("\$z=%s", $z); ?></p>
<?php $z = $y * $y * $x; ?>
<p><?php print $z - 1250; ?></p>
<p>
<?php
$string = "PHP is wonderful and great.";
$string = $string . " " . "All the cool kids are doing it.";
print $string;
?>
</p>
</body>
</html>