Hi having a problem forming my syntax this is what iv’e got.
$id = $_POST['student_id'];
$getlev= $_POST['lev'];
header('Location: usucess.php?id='.$id.'&getlev='.$getlev);
and this is the receiving end.
if(empty($_POST['lvl'])){
$yl= $_GET['getlev'];
}else{
$yl=$_POST['lvl'];}
Currently it is only passing $id would appreciate any help on what I’m doing wrong.
Your problem I think is mismatch:
lvlvslev