I want to add a feature to registration form which will check if that database already exists.
I have a few questions about AJAX.
I am working on creating a CMS, and in the from I specify the name of the database to:
$databse='cms_'.$subdomain;
- I want to have a check at the input whether the database exists.
- Is there a nice way with bootstrap 3 & jQuery validate plugin to show errors on a form field by displaying a 'green tick' image directly to the right of each form field ?
PS:This is the form http://jsfiddle.net/52VtD/3122/ ! What the problem in my code ?