Toggle navigation
Menu
Home
Bug Solutions
Latest news
3:09:00 PM
Achappan Mahalingam
No comments
How to restrict my application and display "Browser Not supported Error" on old IE web browsers?
<?php
if(preg_match('/(?i)msie [1-8]/',$_SERVER['HTTP_USER_AGENT']))
{
echo "Browser Not supported";
exit;
}
?>
Email This
BlogThis!
Share to X
Share to Facebook
← Newer Post
Older Post →
Home
0 comments:
Post a Comment
Subscribe to:
Post Comments (Atom)
Blog Archive
July
(1)
June
(15)
May
(6)
April
(7)
March
(6)
February
(16)
January
(5)
Total Pageviews
Popular Posts
Steps to integrate Yamm mega menu into your own bootstrap website
I am doing website design using bootstrap and a need to use mega menu instead of using list menu items in the navigation bar. For this pu...
What is IIS (Internet Information Services)?
Internet Information Services (IIS) for Windows® Server is a flexible, secure and manageable Web server for hosting anything on the Web. F...
Home Icons
Date Format Validation in PHP
<?php $date_of_completion = '16-03-2015'; $skip=1; ...
Escaping from HTML
Everything outside of opening and closing tags is ignored by the PHP parser which allows PHP files to have mixed content. This allows...
Why we need to use php tags?
When PHP parses a file, it looks for opening and closing tags, which are <?php and ?> which tell PHP to start and stop inte...
Difference between SSL, TLS, and HTTPS?
TLS is the new name for SSL. Namely, SSL protocol got to version 3.0; TLS 1.0 is "SSL 3.1". TLS versions currently defined inclu...
Sample build.xml to create war file based on eclipse directory structure
Yesterday I got a chance to write sample build.xml for one of my colleague. He has default build.xml for his project which is written by so...
What are all the essential topics in PHP for learning?
The below topics we need to cover while learning PHP. PHP Basics Strings and String Functions Basic Arithmetic Conditions and Loops ...
Error: The used table type doesn't support FULLTEXT indexes?
Wow! I got this error when i am creating a below table with FULLTEXT indices. The reason for this exception is "Full-Text Search is su...
0 comments:
Post a Comment