I need a simple php library which can be used to easily pass rules and field names to, and then validation could be easily performed. There should also be an easy way to retrieve the errors.
Any suggestions?
|
I need a simple php library which can be used to easily pass rules and field names to, and then validation could be easily performed. There should also be an easy way to retrieve the errors. Any suggestions? |
|||
|
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
I wrote a simple class of my own, combining some regexes i collected over the years with PHP's sanatize and filter functions.
Now this requires mootools for some of the javascript you see here, but you can easily change that to your favorite javascript framework. All it does is look up the element, and add the 'unvalidated' CSS class to it. Usage is as simple as i always ever wanted: Example:
To validate just one element:
To sanatize just one element:
The coolest thing about this class is that you can send your form with an ajax or iframe target and execute the resulting script. No need to refresh the page or re-send the same form data back to the browser :) Also, if the script needs changing, there's no difficult overdesigned framework to analyze, just change it any way you want :) Oh yeah, feel free to use this anywhere you want. No licenses |
|||||
|
|
If you want to program some on your own and you have PHP 5.2.0 or higher. Then you can look into the filter functions. |
|||
|
|
|
The answer from SchizoDuckie above was awesome. I've used his code in project I'm working on with the permission of the author. One issue I had using this code was that if a required field was not submitted then it would not register an error. I've modified the code to cover this scenario. I've also removed the code to generate HTML and javascript as my project demands separation of UI from logic per MVC pattern. The modified code simply returns JSON encoded result. I repost the modified code here in case it is of some use to others.
|
|||
|
|
|
Zend Forms Which can be used without the entire Zend framework |
|||
|
|
|
There is also this library on github: https://github.com/blackbelt/php-validation |
|||
|
|
|
There is one included in Code Igniter framework, have a look here I recommend to start using one of the PHP frameworks ;) |
|||
|
|
|
You have a part of the symfony framework named symfony forms, which can be used apart of the whole framework. Take a look at the framework documentation. |
|||
|
|
|
have you tried this http://code.google.com/p/phpv/ It focused on rules (validators) and printers that allows to retrieve and display errors. It might be what u looking for. Highly decoupled compnents and usage of cool php5 features such as namespaces (which allows you to avoid code conflicts). |
|||
|
|
|
This phpro.org validation class looks very good for easy data validation: http://www.phpro.org/classes/Validation-Class.html It supports rules like length, etc. |
|||
|
|