12 lines
151 B
PHP
12 lines
151 B
PHP
<!Doctype html>
|
|
|
|
<html>
|
|
<head>
|
|
<title>This is a test</title>
|
|
</head>
|
|
<?php
|
|
$a = 42;
|
|
|
|
echo "The number is $a"
|
|
?>
|
|
</html>
|