Ciao,

Ho creato questo form per inserire un file e un nome ,ma a parte la formattazione ancora incompleta vorrei essere sicuro che il tasto submit invii tutti e due secondo voi è corretto?



codice:
<html>
<head>
<meta name=Proprietà content=marco>
<meta name=ProgId content=PHP Pratico>
<title>Form RUBRICA</title>
</head>
<body>
<TABLE border=0 width=100% cellpadding=3>
<tr>
<td width=100% colspan=2>
<p align=center>Inserisci il nome
<form method=POST action=<? $PATH_INFO ?>>
</td>
</tr>

<tr>
<td width=18%>Nome</td>
<td width=82%><input type=text name=nome size=20></td>
</tr>

<tr>
<td width=18%><input type=submit value=Inserisci nuovi dati></td>
<td width=82%><input type="file" name="file_inviato">
</form></td>
</tr>

        
</table>

</body> 
</html>