View Single Post
Old 06-26-2008, 10:49 PM   #14 (permalink)
codefreek
Super Moderator
Inquisitive 
 
codefreek's Avatar
 
Join Date: Sep 2007
Location: Near you.
Posts: 791
Thanks: 241
codefreek is on a distinguished road
Default

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
codefreek is offline  
Reply With Quote