i'm having a problem with parsing variables from previous page and saving to database on the next page. i have two pages .
first page is where i view my data. i do a select sum, and it works.
now on my second page i want to take the total of the sum and save to database but
this is what i see when i echo my $sql query on my second page
"insert into admit (dated,valued) values (,) " which means my values are not taken in.
first page
admission.php
?php
require_once('Connect.php');
echo'<table>';
echo'<tbody> ';
$sql2="select sum(valued) as totalvalue from details where marker='' and dated='$dated'";
$query = mysqli_query($conn,$sql2);
$row2 = mysqli_fetch_array($query);
echo '<tr>
<td> TOTAL VALUE FOR '.$dated.'</TD>
<td>' . $row2['totalvalue'] . '</td>
</tr>';
echo'<tr><td><a href="confirm admission.php?date=' . $dated . '+'.$row2['totalvalue'].'">admit value</a></td></tr>';
echo'</tbody> ';
echo'</table>';
?>
second page
confirm admission.php
<?php
require_once('Connect.php');
$dated=$_REQUEST['dated'];
$valued = $_REQUEST['valued'];
if (isset($_REQUEST['admit']))
{
$sql="insert into admit (dated,valued) values ($dated,$valued) ";
mysqli_query($conn,$sql);
echo $sql;
}
?>
<html>
<head>
</head>
<body>
<form name="form" method="GET" >
are you sure you want to admit <?php echo $dated ?> <br /><br />
<input type="submit" name="admit" value="yes">
<a href="admission.php">no</img></a>
</form>
</td>
</body>
</html>