next up previous
Next: About this document ... Up: An Online User Interface Previous: References

Appendix I: Code

The following code is that of my first PHP page.

<html>

<head>

<title>PHP Test</title>

</head>

<body>

<?php echo "Hello World!<p>"; ?>

<?php echo $_SERVER["HTTP_USER_AGENT"]; ?>

<P>

<?php phpinfo(); ?>

<form action="action.php" method="POST">

Your name: <input type="text" name="name" />

<P>

Your age: <input type="text" name="age" />

<input type="submit">

</form>

</body>

</html>



Joseph B. Hess 2002-11-12