I am trying to use a variable in my $_POST variable like so:
However I am getting this error:
Does anyone here know how to use variables in the $_POST superglobal, any help is appreciated.
Thank You.
PHP:
$addinfoout = '';
$addinfo2 = explode(',', $addinfo);
foreach ($addinfo2 as $addinfo3) {
$addinfo4 = explode('|', $addinfo3);
$addinfoout .= $addinfo4[3].$_POST($addinfo4[1]).'<br />';
}
However I am getting this error:
Fatal error: Function name must be a string in /home/.auntie/borghunter/borgweb.com/shop/order2.php on line 33
Does anyone here know how to use variables in the $_POST superglobal, any help is appreciated.
Thank You.





