Как да спра достъпа в сайта през експлорър ,че тоя тъп браузър ме нерви :@
A aquafresh Registered 20 Април 2009 #1 Как да спра достъпа в сайта през експлорър ,че тоя тъп браузър ме нерви
D DeathGuard_ Registered 20 Април 2009 #2 http://www.anyexample.com/programming/php/how_to_detect_internet_explorer_with_php.xml http://www.dynamicdrive.com/forums/showthread.php?t=36190
http://www.anyexample.com/programming/php/how_to_detect_internet_explorer_with_php.xml http://www.dynamicdrive.com/forums/showthread.php?t=36190
I I_V_O Registered 20 Април 2009 #3 Код: <script type="text/javascript"> if(/msie/.test( userAgent ) && !window.opera) window.location = "noIEPage.html"; </script>
Код: <script type="text/javascript"> if(/msie/.test( userAgent ) && !window.opera) window.location = "noIEPage.html"; </script>
D DeathGuard_ Registered 20 Април 2009 #9 Това най-отгоре на страниците: <? if (eregi("IE", $_SERVER['HTTP_USER_AGENT'])) { die("Влезте с мозила"); } ?> Увеличете...
Това най-отгоре на страниците: <? if (eregi("IE", $_SERVER['HTTP_USER_AGENT'])) { die("Влезте с мозила"); } ?> Увеличете...
I I_V_O Registered 20 Април 2009 #10 Моя грешка. <script type="text/javascript"> if(/msie/.test( navigator.userAgent.toLowerCase() ) && !window.opera) window.location = "noIEPage.html"; </script>
Моя грешка. <script type="text/javascript"> if(/msie/.test( navigator.userAgent.toLowerCase() ) && !window.opera) window.location = "noIEPage.html"; </script>