Categories
web

Quick Guide to Forms

Quick Guide to Forms Bill Wake, 6-30-95 Tags for Forms You put a form on a normal HTML page: <form method=”POST” action=”script-name”>Put the form components here.</form> Text: <INPUT TYPE=”text” NAME=”field-name” VALUE=”initial-string” SIZE=”nn” MAXLENGTH=”nn”> VALUE, SIZE, and MAXLENGTH are optional; default to “”, 20, andinfinity, respectively. Password text: <INPUT TYPE=”password” NAME=”field-name” VALUE=”initial-string” SIZE=”nn” MAXLENGTH=”nn”> VALUE, SIZE, […]