$id = $_GET['id'];
header('location: subject.php?id=$id');
exit;
so... I want this page to redirect to subject.php with $id has id...
only thing is, it doesn't work! it writes in my browser subject.php?id=$id instead of something like sujet.php?id=1
What am I doing wrong?
