I am posting an array from a form - as in Input .... name ="product[sop]" .. I have tried all sorts to access this as a http_post_vars. Echo "$HTTP_POST_VARS['product[sop]']"; Echo "$HTTP_POST_VARS['$product[sop]']";
Any one any idears any suggestion (polite) would be appreciated.
I'm not 100% sure, but when name="product[sop]" you can echo it like this:
echo $product["sop"];
Just try it...
To my knowledge, ArniHr is right in his posting.
What might be causing your problems, is the track_vars setting in php.ini, wich must be set 'on' for $HTTP_POST_VARS[] $HTTP_GET_VARS[] and $HTTP_COOKIE_VARS[] arrays to work.