Your question is confusing, but if I understand you correctly, you want access to information from all users who filled out this information. If so, you need a database to store this data and then be able to query it.
An example with MySQL would be:
$server = "localhost";
$user = "root";
$password = "";
$dbname = "nomeDoBanco";
//Criar a conexao
$con = mysqli_connect($server, $user, $password, $dbname);
After that, you need a query to register infos:
mysqli_query($con,"INSERT INTO nomeTabela (campos) VALUES $info1, $info2..." ):
And to display all to the admin:
mysqli_query($con,"SELECT * FROM nomeTabela");
If this is not what you want, explain your question better. If you have no idea what I'm talking about, search a little about Database.
Obs. for page targeting you can use:
echo "<script> location.href='../páginaQualquer.php'; </script>";