How to use validations in php?(codelgniter)
Answers were Sorted based on User's Feedback
Answer / solutio magister
Validations can be done through JAVASCRIPT. Since
JavaScript is a browser side scripting language validations
can be done by avoiding the processing time in server side.
| Is This Answer Correct ? | 13 Yes | 3 No |
Answer / vileye
There are various ways to validate a data in php. It depends
on what you want to validate. The various validations are as
follows:
FILTER_VALIDATE_INT Validate value as integer, optionally
from the specified range
FILTER_VALIDATE_BOOLEAN Return TRUE for "1", "true", "on"
and "yes", FALSE for "0", "false", "off", "no", and "", NULL
otherwise
FILTER_VALIDATE_FLOAT Validate value as float
FILTER_VALIDATE_REGEXP Validate value against regexp, a
Perl-compatible regular expression
FILTER_VALIDATE_URL Validate value as URL, optionally with
required components
FILTER_VALIDATE_EMAIL Validate value as e-mail
FILTER_VALIDATE_IP Validate value as IP address, optionally
only IPv4 or IPv6 or not from private or reserved ranges
| Is This Answer Correct ? | 4 Yes | 2 No |
What difference between require() and require_once()?
What is $row in php?
what is the difference between mysql_fetch_array() and mysql_fetch_row()?
How to find the position of the first occurrence of a substring in a string?
What does php mean?
How do you check if a variable has been set in php?
i was set new individual folder for saving session values,the folder name is session and i set 777 permission,using session.save_path function like session.save_path "/home21b/sub004/sc21311-ULCX/candyoflove.com/session/" but it causing Warning: Unknown(): SAFE MODE Restriction in effect. The script whose uid/gid is 12112/12112 is not allowed to access /home21b/sub004/sc21311-ULCX/candyoflove.com/session owned by uid/gid 12267/12267 in Unknown on line 0 ,please tell what changes make this script, i was using .htaccesss file..plz help me....
What is the difference between unlink and unset ?
How to find the length of a string?
What is the difference between static and dynamic websites?
Tell me how to create a text file in php?
What are arguments in php?