Skip to content

Instantly share code, notes, and snippets.

@casgin
Last active August 29, 2015 14:10
Show Gist options
  • Save casgin/a6e0120d1d34453f3f97 to your computer and use it in GitHub Desktop.
Save casgin/a6e0120d1d34453f3f97 to your computer and use it in GitHub Desktop.
Esempio Form HTML
<form id="frmEsempio" name="frmEsemio" action="esito.php" method="get">
Nome: <input type="text" id="fldNome" name="fldNome" /><br/>
Cognome: <input type="text" id="fldNome" name="fldNome" />
<select id="fldTipo" name="fldTipo">
<option value="attivo">Attivo</option>
<option value="nonattivo">Non Attivo</option>
</select>
<input type="submit" id="btnInvia" name="btnInvia" value="Invia Dati">
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment