your form tag does not have the method or the destination
<FORM name="jump2">
s/b <form name=\'jump2\' action=\'nextpage.php\' method=\'post\'>
could aslo use method=\'get\'
then onthe nextpage.php
use
$user=$_POST['user'] or
$user=$GET['user']
to pull in the value and do whatever you want