iki TextField show sonrası veri doldurulur

0 Cevap php

i oluşur ki, bir formu vardır:

<input type="text" id="model">
<input type="text" id="serial">
<input type="text" id="lot_no">
<select id="line">

O yanındaki i settingdata tablodaki verileri var:

Model     Serial      Lot_no     Line
abc        0001         012a      1
abc        0101         022a      1

i abc in #model then 0101 in #serial yazarsanız, gibi DB veri gösterecektir istiyorum:

#lot_no -> 022a
#line -> 1

i want for #lot_no and #serial can automaticalled filled after we type some data in 1st and 2nd textfield. how do i do that?


$('#serial').blur(function(){
         $.ajax({

nasıl bunun için mysql sorgu hakkında?

0 Cevap