My First PHP
<html><head>
<title>
<?
echo "hello world!";
?>
</title>
</head>
<body>
<h1>
First PHP page
</h1>
<?
//Single title C++ style coment
/*
printing the message
*/
echo "Hello world!!";
# unix style single line coment
?>
</body>
</html>
结果:
页:
[1]