Hi all,
I have a form with a text field that I need to validate against a database table. Rather than submit the form and validate the field server side, I'd prefer to validate the field dynamically, once the value is entered. There is too much data to load with the page and validate purely client side.
All I need to do is to check the field value entered exists in a table and if it does return a description for the value entered.
Is anyone aware of a mechanism where I can make a client side JS call to a server side PHP script, validate the parameters I pass and then send the result back to the client to react accordingly?
Thanks,
Dave