<html>
<body>
<?php
//
// Test Form to submit URL text
//
echo " <!-- Form to add new link -->\n";
echo " <form name=\"test_form\" method=\"post\" action=\"test_form.php\">\n";
echo " <fieldset>\n";
echo " <legend>Test Form</legend>";
echo " <table>\n";
echo " <tr><td>Name</td><td><input type=\"text\" name=\"ilink_name\" size=\"80\" maxlength=\"80\" value=\"Website Name\" /></td></tr>\n";
echo " <tr><td>URL</td><td><input type=\"text\" name=\"ilink_url\" size=\"80\" maxlength=\"255\" value=\"enter url\" /></td></tr>\n";
echo " </table>\n";
echo " <input type=\"submit\" name=\"isubmit\" value=\"Add New\" />\n";
echo " </fieldset>\n";
echo " </form>\n";
?>
</body>
</html>