frozenpeas
Technical User
Can anyone see what I'm doing wrong here?
The output of phpinfo() shows up fine.
Here is my little bit of code:
This outputs just:
Thanks. frozenpeas
The output of phpinfo() shows up fine.
Here is my little bit of code:
Code:
<?
require_once('/fns/connect.php');
require_once('/fns/output.php');
do_html_header('Welcome');
?>
<form action="/test2.php" method="post" enctype="multipart/form-data" name="form" id="form">
<table width="25%" border="0" align="center" cellpadding="3" cellspacing="0">
<tr>
<td width="16%" class="bodyContent">Username:</td>
<td width="84%"><input name="username" type="text" id="username" size="25" maxlength="50"></td>
</tr>
<tr>
<td class="bodyContent">Password:</td>
<td><input name="password" type="password" id="password" size="25" maxlength="50"></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="login"></td>
</tr>
</table>
</form>
<?
do_html_footer();
?>
This outputs just:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1"></HEAD>
<BODY></BODY></HTML>
Thanks. frozenpeas