Preg_match dd-mm-yyyy |
I have this code below which checks the date format dd/mm/yyyy
But i need it to check it like dd-mm-yyyy Question: What is the correct preg_match that can check this dd-mm-yyyy not dd/mm/yyyy PHP Code: if ($this->input->post('dob'))
There's only one rule - please don't tell anyone to go and read the manual. Sometimes the manual just SUCKS!
Try something like that (or use php checkdate method)
Code: preg_match('/^(\d{2})-(\d{2})-(\d{4})$/', $this->input->post('dob'));
(05-19-2017, 02:23 AM)Rufnex Wrote: Try something like that (or use php checkdate method) Thanks again for great help works perfect
There's only one rule - please don't tell anyone to go and read the manual. Sometimes the manual just SUCKS!
|
Welcome Guest, Not a member yet? Register Sign In |