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
How to set corporate proxy for NodsJs?
I tried to install a GRUNT (which a javascript task runner to perform repetitive tasks like minification, compilation, unit testing, lint...
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...
Which function is used to moves an uploaded file to a new location?
move_uploaded_file ( string $filename , string $destination ) Example: <?php if( isset($_POST['submit']) ) ...
How to install nodejs in Windows 7?
I want to use javascript on my ongoing moodle development work. But the latest version of moodle 2.8 supporting to YUI library. Now the...
15 Essential CSS Questions:
1. Which of the following is NOT a valid border-style property value? dotted inset glazed groove solid Ans: glazed 2. ...
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...
List of PHP Frameworks
Project Current stable version Agavi 1.0 Aiki Framework 0.9.1 AppFlower 1.3 Ayoola Framework 1.4.1 CakePHP 2.6.1 Cgiapp 1.0 ClanCat...
How to Check and Repair MySQL Tables Using Mysqlcheck
1. Check a Specific Table in a Database # mysqlcheck -c <dbname> <tablename> -u root -p 2. Check All Tables in a Database ...
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...
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 ...
0 comments:
Post a Comment