I am trying to transfer id index page to another page as below
$id=48; header("Location: ".$redirect."parties.php&id=$id");
but its not working please help me
Change &to?
&
?
header("Location: ".$redirect."parties.php?id=$id");
Then in parties.phpyou can access it using$_GET['id']
parties.php
$_GET['id']