← Back
Editing: mostra_aggiungi_record.html
<HTML> <HEAD> <TITLE>Inserimento di un record</TITLE> </HEAD> <BODY> <H1>Inserimento di un record in mia_musica</H1> <FORM METHOD="post" ACTION="aggiungi_record.php"> <TABLE CELLSPACING=3 CELLPADDING=3> <TR> <TD VALIGN=TOP> <P><STRONG>ID:</STRONG><BR> <INPUT TYPE="text" NAME="id" SIZE=5 MAXLENGTH=5></P> <P><STRONG>Data di acquisto (AAAA-MM-GG):</STRONG><BR> <INPUT TYPE="text" NAME="data_acq" SIZE=10 MAXLENGTH=10></P> </TD> <TD VALIGN=TOP> <P><STRONG>Formato:</STRONG><BR> <INPUT TYPE="radio" NAME="formato" VALUE="CD" checked> CD <INPUT TYPE="radio" NAME="formato" VALUE="CS"> cassetta <INPUT TYPE="radio" NAME="formato" VALUE="LP"> LP </P> </TD> </TR> <TR> <TD VALIGN=TOP> <P><STRONG>Titolo:</STRONG><BR> <INPUT TYPE="text" NAME="titolo" SIZE=35 MAXLENGTH=150></P> </TD> <TD VALIGN=TOP> <P><STRONG>Etichetta discografica:</STRONG><BR> <INPUT TYPE="text" NAME="etic_discogr" SIZE=35 MAXLENGTH=50></P> </TD> </TR> <TR> <TD VALIGN=TOP> <P><STRONG>Nome dell'artista:</STRONG><BR> <INPUT TYPE="text" NAME="artista_n" SIZE=35 MAXLENGTH=100></P> </TD> <TD VALIGN=TOP> <P><STRONG>Cognome dell'artista / Nome del gruppo:</STRONG><BR> <INPUT TYPE="text" NAME="artista_c" SIZE=35 MAXLENGTH=100></P> </TD> </TR> <TR> <TD VALIGN=TOP COLSPAN=2 ALIGN=CENTER> <P><STRONG>Le mie note:</STRONG><BR> <TEXTAREA NAME="note" COLS=35 ROWS=5 WRAP=virtual></TEXTAREA></P> <P><INPUT TYPE="SUBMIT" NAME="invio" VALUE="Aggiungi il record"></P> </TD> </TR> </TABLE> </FORM> </BODY> </HTML>
Save File
Cancel