Hello. In my web-application i have a form which contains about 25 fields. Users will create this form and form fields value will transfer to database tables. But i also need an editing function for this form. People will push button, form will load and i need form fields values to load from database. I know that i can load data to form field with jquery load function:
$('#text_field').load('text_field_value.php');
But when i have 25 fields, then i need to do 25 connections to database (1 connection per file), so my form loading very slow.
Is there any solution, to speed up the process?
Thanks in advance.