How to get absolute path on a web server using PHP ?
We can find absolute path in different ways on a web server using PHP, I am showing some of that practices here echo realpath(dirname(__FILE__)); //
We can find absolute path in different ways on a web server using PHP, I am showing some of that practices here echo realpath(dirname(__FILE__)); //
CSS3 allows web designers to specify multiple background images for box elements, using nothing more than a simple comma-separated list. Multiple backgrounds are supported by
Today’s post is about password validation in PHP using Regular Expressions. Here is the small use full Password Validation function. function is_valid_password($password) { return preg_match_all('$S*(?=S{8,})(?=S*[a-z])(?=S*[A-Z])(?=S*[d])(?=S*[W])S*$',