dadamssg Posted January 21, 2009 Share Posted January 21, 2009 whats the tags to make a form field and have default info in it? Link to comment https://forums.phpfreaks.com/topic/141695-simple-form-q/ Share on other sites More sharing options...
TheFilmGod Posted January 21, 2009 Share Posted January 21, 2009 whats the tags to make a form field and have default info in it? <label for="username">Username:</label> <input type="text" id="username" name="username" value="Default Values Goes Here" /> Link to comment https://forums.phpfreaks.com/topic/141695-simple-form-q/#findComment-741772 Share on other sites More sharing options...
aznkidzx Posted January 27, 2009 Share Posted January 27, 2009 <form name="form1" method="post" action=""> <table width="500" border="0" align="center" cellpadding="1" cellspacing="0" bgcolor="#CCCCCC"> <tr valign="top"> <td> <table width="100%" border="0" cellspacing="0" cellpadding="4" bgcolor="#eeeeee"> <tr bgcolor="#000000"> <td width="20%" valign="top" bgcolor="#999999"><font color="#ffffff"><b><center> Login</b></font></td> </tr> <tr valign="top"> <td align="center"><b>User Name</b><br> <input name="textfield1" type="text" size="25"> <p><b>Password</b><br> <input name="textfield1" type="password" size="25"> </p> <p> <input type="submit" name="Submit" value="Sign In"> </p></td> </tr> </table></td> </tr> </table> </form> Maybe thats what your looking for? Link to comment https://forums.phpfreaks.com/topic/141695-simple-form-q/#findComment-748063 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.