header(\'Location: \' . $uri);
This will miss all the $_POST information.
$_POST
if u want to carry forward your POST data to another pages ( except the action page) then use
POST
action
session_start(); $_SESSION['post_data'] = $_POST;