help forms to php
Posted: Wed Mar 10, 2004 2:46 am
iam trying to get information can you help me
my filess
index.html
add.php
no errors but don't see anything just white screen

my filess
index.html
Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>ReGiStEr</title>
</head>
<body bgcolor=#090503>
<table>
<tr>
<td><font face="arial" color="#ffffff" size="-4">nIcK<br><hr>Em@iL<br><HR>RePeAt<br><HR>PaSsWoRd><br><hr>ReApEaT<br><hr><br>
</font></td>
<td><form action="/add.php">
<center>
<input name="username" type="text" value="" height="200"><br>
<input name="email" type="text" value=""><br>
<input name="repem" type="text" value=""><br>
<input name="pw" type="password" value=""><br>
<input name="pwrep" type="password" value=""><br>
<br>
<input type="submit">
</center></td>
</tr>
</table>
</form>
</body>
</html>Code: Select all
<?php
print(username);
echo(username);
print(email);
echo(email)
print(repem);
echo(repem)
print(pw);
echo(pw)
print(pwrep);
print("info about php");
phpinfo()
?>