dadamssg Posted January 21, 2009 Share Posted January 21, 2009 whats the tags to make a form field and have default info in it? Quote 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" /> Quote 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? Quote Link to comment https://forums.phpfreaks.com/topic/141695-simple-form-q/#findComment-748063 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.