Hi All,
I'm currently coding a site using PHP5 for the first time. I came across the need to process variables from forms and the address bar, and with PHP5, I now have to use $GET & $POST for this (which, I didn't normally use with my work before).
I have a question with this: What is the correct way to process $POST or $GET if the variable to be processed is already an array, i.e.
$articeStatus = $_POST[articleStatus];
where $articleStatus is supposed to be an array $articleStatus[$increment];
Requesting assistance on this matter.
Many Thanks in advance.