<?php //这里添加代码
echo 'PHP 很有趣<BR>也很简单!';
echo "Siddim", ".com";
<?php echo ("Siddim.com"); echo "PHP Program";
echo ("Siddim", "PHP");
<?php print "My website name is Siddim.";
echo '<BR>Today is Sunday, we're going to the zoo.';
echo '<BR>Today is Sunday, we\'re going to the zoo.';
<h1>Welcome to PHP</h1>
<!DOCTYPE html> <html> <body> <?php include 'heading.html'; ?> </body> </html>
include 'includes/heading.html';
<?php header('Location: http://siddim.com'); ?>
<?php echo 'Hello'; header('Location: http://siddim.com'); ?>
<p>我在这里.</p> <?php header('Location: http://siddim.com'); ?>