I have a table that has about 30 input fields to perform a posting, for example:
<input type="text" size="8" name="Codigo[]" placeholder="Codigo" maxlength="8" />
<input type="text" size="8" name="Codigo[]" placeholder="Codigo" maxlength="8" />
<input type="text" size="8" name="Codigo[]" placeholder="Codigo" maxlength="8" />
<input type="text" size="8" name="Codigo[]" placeholder="Codigo" maxlength="8" />
So the problem comes up, I do not know anything about jQuery or AJAX, and everything I search on the internet uses examples using them but does not explain what each thing does so I can not adapt to my need. I work with PHP where this form I get in another page in which I will write the data in the BD, but before I need that when a code is entered in the field and given the focus in the next field, it searches in the BD the equipment referring to that one code and return the result in a field next to it, successively for each of the fields, which are exactly the same as the example above!