//bu sayfa.php
<form method="post" action="sayfa.php">
<p><input type="text" name="no" />
<input type="submit" value="Gönder" name="B1"></p>
</form><br />
<?php
if (isset($_POST[B1])) {
$no=$_POST["no"];
header("location: ara.php?no=".$no);
}
?>//ara.php ye de getten gelen $_GET["no"]; ile ne yaptırcaksan yaptırırsın işte...