I am sending values using post method and i want to access all of them on next page, now i don't know the field names and i want to access them all using request or some other if available in php
is it possible that i can access them if i don't know field names.
use of $_REQUEST['']
Moderator: General Moderators
-
brendandonhue
- Forum Commoner
- Posts: 71
- Joined: Mon Sep 25, 2006 3:21 pm
Code: Select all
foreach($_POST as $key=>$value)
{
//do something with $key and $value;
}