that's using the POST method
your form page should look like this:
<form method=POST action=secondpage.php>
<input name=mytext value=""><br>
<?
if($errore==0) {
$fare = "";
if($modo==0) $fare = "registrare";
elseif($modo==1) $fare = "trasferire";
echo "<input type=hidden name=\"fare\" value=\"" . $fare . "\">\n";
?>
<input type=submit name=submit value=submit>
</form>
==================
secondpage.php
<?php
echo $fare;
echo $mytext;
?>
or
secondpage.php
<?php
echo $_POST['fare'];
echo $_POST['mytext'];
?>
or
secondpage.php
<?php
echo $HTTP_POST_VARS['fare'];
echo $_HTTP_POST_VARS['mytext'];
?>
it depends on your configuration
also, you should test to see ifyou actually have valid information before you just start using it...