June 11, 2022 in Php, Technology
Logs using files are more efficient, however logs stored in the database are easier to read, even remotely. however that connecting and inserting rows into the database is error prone (database server down, password wrong, out-of-resources). Log to db instead if you need other people needs to read logs in a web interface or if […]
May 28, 2022 in Php
Confirm that modules are enabled and working in Apache. Also when i write sudo a2enmod expires and sudo a2enmod headers I get a “module already enabled” (And I did restart Apache2) Double confirm that modules are enabled and working in Apache.To double check this I have also tried removing the <ifModule mod_expires.c> and <ifModule mod_headers.c> lines from my .htaccess file (and the end […]
May 12, 2022 in Php, Tips and Tricks
Phone number validation using regular expression Phone number validation using is_numeric function is_int or is_integer is_numeric regular expressions ctype_digit filter_var is_integer() for this function these values are are not valid: “0010”, “123” is_numeric() for this function these values are valid: 1.3, +1234e44 and 0x539 filter_var() for this function a value as “00123” is not valid […]