Featured
-
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Best 5 Lightweight PHP Frameworks for REST APIs Development
Are you ready to develop the Rest AP
by ankur.kumar -
PHP: Full-Stack Framework vs Micro Framework
A web framework can be described as a software fra
by ankit.bhatia -
How to get facebook profile picture by Facebook App
If you would like to get your profile picture in f
by vivek.rastogi -
Creating RESTful API in cakephp
This tutorial will help you to learn how to create
by pushpendra.rawat
Tags
Model Validation Using cakephp 3.x with Example
As we all know that validation plays an important role in any technology. In cakephp 3.x we will implement either model validation or javascript validation. Steps to implement model validation is as follow.
Step 1: Fisrt we have to set the val...
client side and sever side validation in cakephp
Data validation plays an important role in any application, It helps to confirm that the data in a Model confirms to all the rules of any application.
There are 2 types of validation in cakephp. First one is server side and the...
How to apply Server Side Validation on form in Cakephp
Data validation is the process to ensure that computer input coming from user is clean, correct and useful. Data validation also checks if field is not empty. If validation fails , response is sent back to the user, then display proper message, s...
How to use Validation in CakePHP using Ajax in 2.4.1 version?
Hi Reader's,
Welcome to FindNerd,today we are going to discuss how to use Validation in CakePHP using Ajax in 2.4.1 version?
Validation is very important feature for user input in a web application. By validation we can make sure that the d...
Custom Validation rules in CakePHP
Validation is a process of analyzing the exactness of data. It assures that the data entered is according to our requirement or not.
CakePHP has it's own inbuilt validation rules. In CakePHP validation rule is locate in the Model file of t...
Validating Captcha code using php
Captcha verification includes:
should be a combination of alphanumeric characters.
should be case-sensitive
fresh captcha is to be displayed whenever a webpage is refreshed.
should be refreshed when user enters incorrect value.
&...
jquery validation method
jquery validation is a pattern of checking of input desired code user need a standard library of validation method and include the file into the same folder. it is a process of ensuring that computer input is clean and correct by using the rules ...
Validation in PHP?
Validation basically meant for test or check the input values which are submitted by the any user while processing any form or process.
PHP allow us two kind of validation there.
Client-Side Validation These Validation we performed on ...
email address validation in php
By using 'eregi' we can validate our email address.For validate email we use a pattern and match our email address with this pattern
function isValidEmail($email_address)
{
$emailpattern = "^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0...