con register_globals su off, funziona così:
<html>
<body>
<?php
$ris=$_POST['a']+$_POST['b'];
echo "la somma è ".$ris;
?>
</body>
</html>
con register_globals su off, funziona così:
<html>
<body>
<?php
$ris=$_POST['a']+$_POST['b'];
echo "la somma è ".$ris;
?>
</body>
</html>