jaio
Poniamo che questa si chiami pagina.php
codice:
<?php
if($_POST) {
$xml = simplexml_load_file("https://www.miosito.it/pagina.aspx?value1=".$_POST['nome1'].'value2=".$_POST['nome2']);
echo "<pre>";
print_r($xml);
echo "</pre>";
} else {
?>
<form id="Nomi" name="Nomi" action="pagina.php" method="post">
<table>
<tr>
<td>Numero1</td>
<td><input type="text" name="Numero1" id="Numero1" value="nome1"></td>
</tr>
<tr>
<td>Numero2</td>
<td><input type="text" name="Numero2" id="Numero2" value="nome2"></td> </tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Go"></td>
</tr>
</table></form>
<?php
}
?>
il codice è abbozzato ma dovrebbe darti un idea...