Hello,
We have very large form and we are posting the posted to data to mysql using $_POST, but we have 2 complex section in form where we need your help.
HTML markup of form
<label>Customer Name</label>
<input type="text" size="50" name="name" />
<label>Education</label>
<input type="text" size="50" name="class" />
<input type="text" size="50" name="board" />
<input type="text" size="50" name="subjects" />
<input type="text" size="50" name="aggregate" />
<label>Payment Plan</label>
<ul id="fields"></ul>
And we are appending following to #fiels using jquery
<li><input type="text" size="30" name="date" /> <input type="text" size="30" name="amount" /> </li>
Now we would like your help with following problems...
- How to post education details to mysql table? - using php serialise?
- how to post appended input boxes to mysql's tbl.paymentplan?
thanks for your support.
Originally asked by: seoppc on Stack Overflow


Answers