I find firefox and Internet explorer equal. I happen to use both of them for certain things. Firefox is better than internet explorer on most cases, but internet explorer has better tabbing (My Opinion!)
Ok, I have replaced the old tutorial on my website with this one... bassically the same... except its about increasing browser compatibility, instead of telling people internet explorer sucks... I think that its a better idea, as its less offensive ( I honestly don't know who would take offense), and has more of a point.
QUOTE
Description With so many different browsers, people have a long list to choose from. Unfortunately, that is when we run into problems with a website's performance. Since most browsers read HTML, CSS etc. slightly different than the next browser, your website may not look how you wanted. Let's learn to fix this problem.
Try It Out If we want to make our website compatible with different browsers, we'll have to know which browsers the viewers will be using. We can grab this with the good ol' HTTP_USER_AGENT command.
Alright, good job, young php-learner. As you can probably guess, this does pretty much nothing. So far all we have done is create the $browser variable and given it a value. Now we are ready to make our website more compatible.
Code <?php //-------------- //grab user info //-------------- $browser = $_SERVER['HTTP_USER_AGENT'];
//-------------- //compatible content //-------------- if(strstr($browser, "MSIE")) { $compatible = <<<html Code Compatible for Internet Explorer html; } else { $compatible = <<<html Code Compatible for Other Browser(s) html; } echo $compatible; ?>
Ok, so bassically, if the value of the $browser variable (which contains the HTTP_USER_AGENT command) has the phrase MSIE (Microsoft Internet Explorer), it shows you whatever you replace "Code Compatible for Internet Explorer" with. If it doesn't contain MSIE then it echoes what ever you replace "Code Compatible for Other Browser(s)" with. Also, you can use this to add special features to your website depending on what browser they are using. Play around with the code, and add your own flavours and ideas to it.
Notice from rvalkass:
Even if you copy from your own website, it should really be quoted.
When i changed to FireFox, my internet was wayy faster (my bandwith runs out frequently) According to my friend, IE takes longer to load up the page (not downloading)
Had it not occured to you, that you could use javascript for that? just create a variable for weather or not it is IE, then a statement for when it is, and an ELSE for if it isnt. Thus, relieveing some strain from your web host, as the server does not have to process it, the clients computer does it itself.
Alright, I just found out about this very recently on my quest to get a wireless adapter for my Xbox
360. You can use the wireless connection from your laptop as an internet connection for the 360.
I'm putting this up because I had a lot of trouble with the DNS portion of this and no one has
posted up the way that I found to do it, so here I go. Supplies: Laptop connected to internet Xbox
360 Ethernet Cable (comes with Xbox, can use any other though) 1. First, have your xbox turned on.
Also have your PC on, since this next part is all with the computer. This will...
I'm working on a website and a few minutes ago I got very tired from the Internet Explorer
vertical scrollbar. This vertical scrollbar is always there, even if the length of the page does not
require a vertical scrollbar. In this case, Internet Explorer will disable the scrollbar though not
remove it. In my opinion this would be correct behaviour. The disabled however not hidden scrollbar
means that a switch between a preview of your website in Mozilla Firefox and MS Internet Explorer
will lead to an annoying change of the location of your layout. To disable this an...
First of all, psp can browse the internet with its simple browser. BUT! What you may not know is
that there is a bug where when you try to search or use a wireless lan connection (WLAN) the psp may
say something like: Internal Error (80410A0B) To fix this without any memory loss, take out the
UMD which is in the psp, and also take out the memory card. Next, go to settings, then system
settings and click restore settings, the psp may freeze up, but it is not broken, take out the
batter pack and put it back in, the settings should be restored and all should work. So...
Wanna surf the internet without opening up internet explorer, firefox, or opera? This trick might
save you from detention when you go back to school and go on my site. Open up Notepad. Start -> All
Programs -> Accessories -> Notepad Press F1 to bring up the Help. Click the top left corner (the
icon) of the help window. Select Jump to URL… Type in http://nerdnirvana.org . Now when your
teachers come around to check out the windows you’ve opened, you won’t get caught! ...
Windows XP reservers 20 percent of the Internet bandwidth for QoS ( Quality of Service). This is
unnecessary and can be disabled. By disabling this you get a boost in the Bandwith. Follow the
following steps: * Select Start > Run and enter gpedit.msc to Open the Group Ploicy Editor.
* In the left-hand column in the window, navigate to Computer Configuration > Administrative
Templates > Network > QoS Packet Scheduler * In the right column double-click on Limit
reservable bandwidth and select Enabled . * Change the Bandwidth Limit to 0 and click OK. N...
This is s little tip that you can make your Internet Explorer browser can run fast as Firefox
browser. You can make it by following the step by step below step 1: first you go to start menu
and then choose run. step2: After you choose run,it appears a little box,then you can type regedit.
step3:Find the key that you need by following this HKEY_CURRENT_USER \ Software \ Microsoft \
Windows \ CurrentVersion \ InternetSettings step4:On the right box,right click and choose new ,then
continue choose DWORD Value step5:type into the box : MaxConnectionsPerServer step6:Just...
In this tutorial, I'm going to show you how to test your PHP pages without the Internet or
uploading the files to your trap17 server. This tutorial is similar to doom's, but the links he
provided does not work, so I decided to make my own tutorial with working links. The program that I
will be using for this tutorial is called XAMPP . XAMPP is a modification of the popular Apache
server, and I'm using XAMPP because of its simplicity to install as well as maintain. The
current version of XAMPP is 1.4.13 and it has the following bundled in the download: QUOT...
How to delete your search history in Microsoft Internet Explorer As you know, when you type a
keyword in google or yahoo, Microsoft Internet Explorer saves your keyword for later search.
Unfortunately these keywords remain on your hard drive even you clean your cookies. To clean your
keywords do following: In Microsoft Internet Explorer 6.0 1- Click on Tools and then select
Internet Options. 2- In Internet Option window, click on content tab. 3- In content tab, click on "
AUTOCOMPLETE" button. 4- In " AUTOCOMPLETE SETTINGS" window, click on " CLEAR FORMS" to remove...
QUOTE I have already posted block adserver. Use that to update your hosts file QUOTE
1. Windows 2k/XP 1. First, open the Windows Registry using Regedit, and
(after backing up) navigate to:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\ServiceProvider 2. Note
the following lines (all hex dwords): Class = 008 ( /biggrin.gif' border='0'
style='vertical-align:middle' alt='biggrin.gif' /> - indicates that TCP/IP is a name service
provider, don't change ...