This example describes the use of jquery form validation plug-ins in the YII framework. Share to everyone for your reference, as follows:
Run as follows:
View Layer:
Controller (verify Uniqueness):
Verify name Uniqueness Public Function actiononly () { $u _name=yii:: $app->request->get (' u_name '); $login =yii:: $app->db; Query data $sql = "SELECT * from login where u_name= ' $u _name '"; $res = $login->createcommand ($sql)->execute (); if ($res) { echo false; } else { echo true; }}
For more information on YII related content readers can view this site topic: "YII framework Introduction and common skills Summary", "PHP Excellent Development Framework Summary", "Smarty Template Primer Basic Tutorial", "PHP Object-oriented Programming tutorial", "PHP string (String) Usage Summary "," Introduction to Php+mysql Database Operation "and" PHP common database Operation Skills Summary "
It is hoped that this article is helpful to the PHP program design based on YII framework.