Welcome To Snipplr
Everyone's Recent PHP Snippets Tagged validation
- All /
- JavaScript /
- HTML /
- PHP /
- CSS /
- Ruby /
- Objective C
This code demonstrates a simple way to validate IP address using preg_match() PHP function. This is a very simple code, that allows you to perform this task quickly with a minimum lines of code.
0
1041
posted 10 years ago by apphp-snippets
Simple PHP functions to validate url, email address and ip, functions will return TRUE for valid data and FALSE for invalid data.
0
1162
posted 10 years ago by codingforever99
Simple PHP functions to validate username, password and date, functions check the input format and allowed characters and then return TRUE for valid data and FALSE for invalid data.
0
3243
posted 11 years ago by codingforever99
Validates Numericals in a text box.
Validates spaces in a text box.
0
1024
posted 11 years ago by laxman2021
Look if the given input could be a legal VAT-number.
Accepts input with or without '.' between the numbers and must contain a County-code
0
955
posted 12 years ago by MGHollander
Calling generateHash() with a single argument (the plain text password) will cause a random string to be generated and used for the salt. The resulting string consists of the salt followed by the SHA-1 hash - this is to be stored away in your databas...
3
899
posted 12 years ago by StevenW721
Within your view, you place something like:
<?=>session->flashdata('feedback') ?>
0
623
posted 13 years ago by screon
The following function does a very simple check on the supplied string to help ensure it is a valid email address.
0
935
posted 14 years ago by jprochazka
The following function validates and returns TRUE or FALSE if the supplied string could be a valid domain name format.
2
928
posted 14 years ago by jprochazka
run as callback from form_validation->setrules
ex:
$this->form_validation->set_rules('cc_number','Credit Card #','required|max_length[20]|callback_alpha_dash_space');
0
783
posted 14 years ago by myke
I used to have the strlen block and the 2 preg if blocks each separately return false throughout, but lately I'm in a single point of exit mindset.
I cannot take credit for the regexps - I borrowed them from someone who borrowed them. If the real...
0
811
posted 14 years ago by philsown
PHP provides many date manipulation devices and an entire suite of date functionality with the datetime class. However, this does not address date validation, that is, what format a date is received in. The PHP strtotime() function will accept many f...
1
1153
posted 14 years ago by kanampo
This function validate a mail address in a smart way: if the address to validate has a correct syntax (checked with regular expression), it tries to connect to the mx server of the address. This means that the program have to use the smtp protocol to...
3
1063
posted 14 years ago by ginoplusio
This is a slightly hard core email check. I work for clients that want real email addresses. They pay quite a bit of money so yes, I am going to give what they want...
3
834
posted 15 years ago by brownrl