I have a page which goes to another page after transaction finished, with a header like this:
header("Location: mypage.php");
How do I put values behind it?
I tried this, but it doen't work:
header("Location: mypage.php?value1=$value1&value2=$value2");
Can anyone help?