parsing - parse into database from javascript form -


i have webpage form processed javascript code. there form button javascript onclick() method. here webpage (czech declensions)

on input have list of names in mysql database. need put single name form list form, click on button invoke onclick() method , on output want have name declension (field 5. vokativ in form) - insert database table. action in cycle each name list form database.

please, suggestions how can done?

i recommend ajax trick..

with jquery done pretty easy if understand right.

it this:

$.ajax({   url: "validate.php?info=something&otherinfo=somethingelse" }).done(function() {   alert('done'); }); 

you informations doing this:

var = $('input[name=something]').val(); 

then make php page handle informations.

hope helps.


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -