Hi
I'm setting up a registration page, and I'm using PHP primarily to verify the data.
I've realized that using a client-driven language for some of the validation will reduce the workload from the server. I don't have much knowledge in jquery, but I'm looking for code that will determine the correct syntax of an email (ex, one '@' and no funny characters).
Additionally, is there a function in jquery where every time, after a certain event (on click, on keyup) it preforms a php script and display the results without reloading? I'm looking for something that will allow me to give the user fast feedback on more complicated functions (like looking up an email's DNS to make sure its' real, checking if the username exists ect.)
Can someone point me to a resource on this?