Use the following code in .htacces file. Then all the request from that ip will be denied. This will helps to protect the website from particular ip attack. ## USER IP BANNING <Limit GET POST> order allow,deny deny from 192.168.1.0 allow from all </Limit>
Federal Bank launched new website
The federal Bank launches new site with advanced features for its valuable customers. They also announced some gift packages for first logged customers. http://www.newfederalbank.com/
Password protection with htaccess
On developing stage of website developers can protect their website access with .htaccess password. Steps: First create a .htaccess file then at the end of file add the following lines AuthName “Restricted Area” AuthType Basic AuthUserFile /home/smartips/.htpasswd AuthGroupFile /dev/null require valid-user 2. create a .htpasswd file and give username and password smarttips:XsP89zmAUibSw Now user Website…
limit the number of characters in a string php
String functions are have good role in php programming. Some times the php developer wants to limit the number of characters. In certain situations have one function. It is very useful and easy to apply PHP Function is Syntax: substr(string, <start position>,<end position>) Eg: $string=’I am a web developer”; substr($string,0,6); output: I am a
extract date from datetime in php
PHP is a object oriented programming language for website building. PHP has number of in-built of functions to do different tasks .one important function is date.We can use date php function in different ways. Sometimes date from the back-end as timestamps. It means contains both date and time. some situations only need date part so…