ok i think if u really need it us can use something like this:
class postVars
{
var $_time;
function postVars()
{
$this->_time = time();
}
}
$post = new postVars();
foreach($_POST as $key => value)
$post->$key = $value;
This should already do it, however, i wrote this from the top of my head so no warranty that it works 😉. It'll (should) give u the object with all post vars and another variable containin the time of the request.