Right now there is a page redirection using
header("Location: {$_SERVER['HTTP_REFERER']}");
but the URL that the page is redirecting to is something like:
http://localhost:5110/page.php?1st=2&2nd=140413&3rd=547859
how can I remove a part of the URL of the redirection? the URL should be like :
http://localhost:5110/page.php?1st=2&3rd=547859
If you have another suggestions for this let me know... thanks.