EDIT: After your comments, I understand that you want to pass variable through your form.
You can do this using hidden field:
<input type='hidden' name='var' value='<?php echo "$var";?>'/> 
In PHP action File:
<?php 
   if(isset($_POST['var'])) $var=$_POST['var'];
?>
Or using sessions:
In your first page:
 $_SESSION['var']=$var;
start_session(); should be placed at the beginning of your php page.
In PHP action File:
if(isset($_SESSION['var'])) $var=$_SESSION['var'];
First Answer:
You can also use $GLOBALS :
if (isset($_POST['save_exit']))
{
   echo $GLOBALS['var']; 
}
Check this documentation for more informations.