Tag Archives: cakephp

Validation without a model in CakePHP

CakePHP offers an awesome set of validation methods, but they rely on defining what you want to validate within a model. Sometimes you just want to quickly validate a certain piece of data, or validate a set of data iteratively without touching the model. For that, you can import the Validation class and use its [...]