Duckie 0 Report post Posted January 1, 2005 ok i want to no how to set a character for this script: the characters would be: 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ()[]-_ <td width=100><input style=\"border:1px solid #76a5d5; WIDTH: 115px; HEIGHT: 20px; FONT COLOR: #ffffff; color:white; BACKGROUND-COLOR: #000000\" type=text size=15 maxlength=15 length=20 name=user value=\"\"></tr> thanks if u can help =/ Share this post Link to post Share on other sites
logophobia 0 Report post Posted January 1, 2005 Not a script really, just use textarea and enter stuff between the 2 tags.<textarea style="border:1px solid #76a5d5; color:#fff; background-color: #000;" cols="15" rows="20" maxlength="15" id="user" >ENTER STUFF HERE</textarea>Or use the value attribute of the input tag if you don't want a multi-row input box.<input type="text" style="border:1px solid #76a5d5; color:#fff; background-color: #000;" length="15" maxlength="15" id="user" value="ENTER STUFF HERE"/> Share this post Link to post Share on other sites