1
0
mirror of https://github.com/php/web-php.git synced 2026-03-31 11:42:09 +02:00
Files
archived-web-php/oreilly99/s_lang.php3
1999-08-21 16:11:20 +00:00

14 lines
346 B
PHP

<?php require "header.inc"?>
<H1>Language Overview</H1>
<h2>Hello World</h2>
<?example('<html><head><title>PHP Test</title></head>
<body>
<?php echo "Hello World"; ?>
</body></html>
')?>
<h2>Displaying a Variable</h2>
<?example('<?php echo $HTTP_USER_AGENT; ?>')?>
<h2>Output:</h2>
<?php output($HTTP_USER_AGENT); ?>
<?php require "footer.inc"?>