Is there any way to do some kind of while()
for each post variable and session it up... like in mysql
while($row=mysql_fetch_array($result)){
echo($row['name'];
}
But to get this result with the $_POST
while($_POST){
$_SESSION['BLA'] = $_POST['BLA'];
}
Thanks in advanced :)