06-26-2008, 10:49 PM
|
#14 (permalink)
|
|
Super Moderator
Join Date: Sep 2007
Location: Near you.
Posts: 791
Thanks: 241
|
FORM EDIT:
PHP Code:
echo "<form action=\"users.php\" method=\"POST\">";
echo "<table>";
echo "<tr>";
echo "<td colspan=\"2\">Login:</td>";
echo "</tr>";
echo "<tr>";
echo '<input type=\"text\" name=\"username\" value="'.$username.'">';
echo "</tr>";
echo "<tr>";
echo '<input type=\"text\" name=\"password\" value="'.$password.'">';
echo "</tr>";
echo "<tr>";
echo "<td colspan=\"2\"><input type=\"submit\" name=\"submit\" value=\"submit\"</td>";
echo "</tr>";
echo "</table>";
echo "</form>";
Last edited by codefreek : 06-26-2008 at 11:06 PM.
Reason: One more EDIT
|
|
|
|