I have a form that sends all the data with jQuery .serialize() In the form are four arrays qty[], etc it send the form data to a sendMail page and
php automatically detects $_POST and $_GET-arrays so you can juse:
and $qty will by a php-Array. Now you can access it by:
if (is_array($qty))
{
for ($i=0;$i
if you are not sure about the format of the received data structure you can use:
print_r($_POST['qty']);
or even
print_r($_POST);
to see how it is stored.