Pass a data from a variable to other vaiable.?

Hello how to get the value of the variable from previous page.

example.

Get the value from this page.


<form action='Assign.php' method='post'>
<input type='hidden' value='Open' name='status'>
	<table frame='box' align=center border=1>
		<tr>
			<td><b>Date:</b></td><td><?php echo $Cday?></td>
			<td><b>Time:</b><td><?php echo $Ttime?><td>
		</tr>
		<tr>
			<td><b>Ticket Number:</b></td><td><?php echo $ticketno?></td>
			<td><b>Category:</b><td><?php echo $Cat?><td>
		</tr>
?>
</form>

and pass to this page.



insert($ticketno,$_SESSION['username'],$Cday,$Prob,$desc,$pic,$_POST['status'],$con);



What does the output from:


var_dump($_POST);

tell you that has been received?

Compare that with what you want/expect.