All im tryinto do is a function that gives back a Variable ($x) that has the whole entry on the global $_POST (It´s definitely set) array in it. I tried different ways but all those doesnt work. So this is my code:
function returnpostarray()
{
if(isset($_POST))
{
while(list($variable,$return)=each($_POST))
{
$x=$x.$variable."°";
}
}
return $x;
P.S. The "°" in the code is just a seperator i use to explode the string later in my script.
Any help would be great.
Regards Benjamin