I'd like to serialzie multiple rows in my table using serialize()
to update my database. The form data looks like this:
f_name=tom&l_name=riddle=&f_name=albus&l_name=dumbledore
If I send this data to php with $.post('file.php', formData, function(result)
and log the returned result I can only see the last entry (f_name=albus&l_name=dumbledore). How can I send multiple rows with the same input fields to the php file?