Recommend this page to a friend! | Stumble It! | Bookmark in del.icio.us |
Classes of sujith nair | > | multi | > | class.multi.inc | > | Download | ||
|
Download |
<?php // Class to reload multiple selection fields // Made By Sujith Nair [sujith_77@hotmail.com] // On August 13, 2001 class multi { function sel($name,$val) { // Check whether the field has the value if(strstr($name,$val)) { return "selected"; } } // End of class } ?> |