Bè purtroppo non ci abbaimo capito una mazza perchè anche il seguente codice immesso in una semplice pagina html non funziona:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Documento senza titolo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form name="form1" method="post" action="">
<table align="center">
<tr>
<td width="200">Cognome</td>
<td width="200"><input type="text" name="cognome"></td>
</tr>
<tr>
<td width="200">Nome</td>
<td width="200"><input type="text" name="nome"></td>
</tr>
<tr>
<td width="200">Ragione Sociale</td>
<td width="200"><input type="text" name="ragione_sociale"></td>
</tr>
<tr>
<td width="400" colspan="2" align="center">
RICERCA LOCALITA'
</td>
</tr>
</table>
</form>
</body>
</html>