Hi Jake, I have all fields in a form with id, but I use 4 tables in
mysql, so how can I manage properly all data?
Example:
- <form id='form'>
- <input id='1'>
- <input
id = '2'>
- <input id='3'>
- <input id='4'>
- <input id='5'>
- <input
id='6'>
the value of id 1 is a string -->
table1
the value of 2 and 3 are chechboks -->table2
the value of id 4 is a string ->table 3
the value of id 5 / 6 are input created at runtime.
with serialize how can I solve my problem?