Jul 20, 2008

Internet Explorer Sucks - Yeah, I said it.

Free Web Hosting, No Ads > CONTRIBUTE > Tutorials
Pages: 1, 2

free web hosting

Internet Explorer Sucks - Yeah, I said it.

KansukeKojima
I'll give you guys a special sneak preview of this tutorial... a good ten minutes before it comes out on my website... enjoy.

Internet Explorer Sucks


Description
Its time to send those pesky Internet Explorer users a message. Learn how with my brand new "IE Sucks" PHP Code. (Only $29.99, but wait there's more!)

Try It Out
Alright, in order to give those IE users what they deserve we will be using the good ol' HTTP_USER_AGENT command. This command grabs the users browser name, etc. Its also useful for all kinds of other things such as stalking somebody.... *cough*


CODE
<?php
$browser = $_SERVER['HTTP_USER_AGENT'];
?>


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. Next we'll create the message for those IE users.

CODE
<?php
$browser = $_SERVER['HTTP_USER_AGENT'];
if(strstr($browser, "MSIE")) {
$message = "You *_edit_*, you're using Internet Explorer. Get something else now!";
} else {
$message = "You are not using Internet Explorer. Good.";
}
echo $message;
?>

Ok, so basically, if the value of the $browser variable (which contains the HTTP_USER_AGENT command) has the phrase MSIE (Microsoft Internet Explorer) somewhere in it, the page calls the viewer a douchebag... And if they are not using MSIE, then it pats them on the back.

Of course you can always modify this code to say "Good job" to MSIE users, etc. Or insult users of different browsers... in general, this is a very fun code to play around with and I hope you enjoy it.
Notice from jlhaslip:
Edit word as per above.

 

 

 


Reply

budsu
i dont know the code but i know that IE drags to himself all kinds of toolbars i had once 4 or 5 at once .
i switched to firefox witch just god popular (right before windows vista and new *IE) i liked it becouse of tabs .

but i cant get used to IE again -> wheneever i reinstall widows the first thing i download is Firefox

Reply

hitmanblood
First of all that code is not intended in such way that is I think that you are misusing the code provided biggrin.gif why? because this code is in face intended to help developers because different browsers have different ways of showing very different things and if you are clever enough to use some programs like dreamwaver then you may find that it has compatibility check this is one of its integrated options and this will help you because then you can adjust your code to return correct encoding for the computer that is using your site.

Also remember that the thing that is very important is that internet explorer is still the most used browser today and something else internet explorers things that infacted me and most of the users the most are in fact its integration with the micrsoft operating system windows and as internet explorer was integrated into the kernel in windows xp this produced many problem and security issues however now things should have changed since it is no longer integrated in the kernel of operating system making it more reliable and a lot more secure.

And one more final thing I use mozilla firefox because it is a lot betteer and more usuful then internet explorer or any other browser nto because other browsers "suck".

Regards

 

 

 


Reply

b1gv1c
I use ie at work and it sucks. I love firefox. My ie crashes far too often. Especially now that I have ie 7 with vista.

Reply

KansukeKojima
Although I agree IE is not good, and that the tutorial title is misleading... please try to keep comments relative to the tutorial... not your comments on IE... please.

Reply

Forbez
Internet Explorer sucking, is more a of fact then a tutorial tongue.gif.

But yes, very good. Could you expand on this? Add ways to change the entire content of the website?

Reply

KansukeKojima
Well I suppose that instead of hate-messages, have different layout codes etc. to suit different browsers.... I'll write that up later... unless someone else does.

Reply

xavierkym
You can even use Javascript just like this one:
CODE

<script type="text/javascript">

var browser = navigator.appName
var type = "Microsoft Internet Explorer"
if ( browser == type)
{
alert('You are using Internet Explorer!!');
alert('Just click OK to download Firefox LOL!!');
document.location = "http://www.mozilla.com";
}

</script>


Hehe.. Just sharing.. rolleyes.gif

Reply

anachro
whats Firefox's abbreviation? Like how IE's is MSIE

Reply

xavierkym
^

Well if you want to use the script but the other way around.. Try this..
CODE
if(navigator.userAgent.indexOf("Firefox") != -1)
{alert("Please Use Internet Explorer");
   window.location = "http://www.google.co.uk";
}

Reply

Latest Entries

ashxu
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)

Reply

KansukeKojima
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.


Code
<?php
$browser = $_SERVER['HTTP_USER_AGENT'];
?>

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.

Reply

usedragon
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!) sleep.gif

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2
Similar Topics

Keywords : internet, explorer, sucks, yeah,

  1. Surf Internet Without Opening It. Useful For School
    How-to! (5)
  2. Best Software And Explorer
    What do you think is the most useful software (4)
    What do you think the most useful software out. For me its Aim, xfire, or Notepad. Most people
    won't understand notepad but watever. For my favorite Explorer is Firefox. I never upgraded to
    3.0 but who cares talk people!....
  3. So Yeah, Women Are Screwed Up...
    or at least this one was... (13)
    So, I started seeing this girl after breaking up with my ex, who was pregnant (long story, I taking
    care of my responsibilities, or trying at least). a few weeks into the "relationship" I started
    talking to said ex, who had disappeared after we broke up and refused to let me have contact or any
    info about my daughter ( /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0"
    alt="biggrin.gif" />). I of course being smart, open and honest, told the new "girlfriend" about me
    talking to her, more so to pass on that I now knew about my daughter and share my happines....
  4. Sending Free Sms Over Internet!
    (2)
    New online services have been set up that transit your message from their station using a form on
    their website. You can just Google Search for "free SMS over internet" or something else of the kind
    /laugh.gif" style="vertical-align:middle" emoid=":lol:" border="0" alt="laugh.gif" /> . One of the
    reliable services I have found is text4free.net . They can send SMS on a huge range of providers
    and even have a online provider checker - when you send an SMS you need to know the network provider
    of the recipient and the online checker can do this for you! They also all....
  5. Need Help For Seo And Internet Marketing Works!
    Need help!! (3)
    Hi everyone, I have been working as a SEO for quite sometime. There are different techniques that
    are used by us in this work. There are many sites that we need to promote and use certain links for
    internet marketing. Among all theses, I need to open multiple tabs for the work. I know that all the
    links are not safe and some of them are ir-relevant or not safe. This also makes the work slow and
    pending if the link stops opening on a new window and makes the system come to a stand still. Does
    anyone know any better ways to work online at a better pace? Any help will be ....
  6. Qoodaa Mnp2p Creates A New Epoch Of Internet Transfer
    (0)
    Qoodaa Communications , which has been devoted to developing internet transfers services, innovates
    and develops a new P2P technology, called MNP2P for short. It creates a new epoch of internet
    transfers acceleration for large files. It is well known that the main downloading accelerative ways
    are P2P and CDN. However, the traditional P2P needs multi-users download at the same time to
    guarantee its downloading speed. BT is the most classic example of P2P. But CDN can ensure
    downloading quality under the circumstance that there are a few downloading users and there is e....
  7. Ie6 - When Will Be Dead ?
    discution about developers and Internet Explorer 6 (12)
    QUOTE Most web designers will have copies of each of the leading browsers installed on their
    system — for testing purposes. However, given the percentage of readers who come to HTMLSource
    still using Internet Explorer 6, there are obviously a huge amount of people out there who haven’t
    been told that there are better browsers available. What do you think, when will be the time,
    when developers won't have to test their work in IE6 ?? I am waiting for that time to arrive
    /smile.gif" style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" /> ....
  8. The Internet Where Everyone Is Equal
    The only place you can be really equall (11)
    Years ago... I was surfing through web, chating with people. Anyway, someone was wrong and I had
    to correct him :P So we exchanged messages then I learned he's a middle aged man. That hit me.
    To that point, in my mind he too also a teenager. So I kinda fell remorse, I felt like i acted
    disrecpectull to an elder. Just think about it, our minds cant talk to a monitor so we create an
    avatar for the people we talk on web. But because we know so little things about them, our mind
    copies our own identity. So that's why we are absolutely equal on web. It doesnt mat....
  9. 14 Vital Internet Tools
    Mostly Free (2)
    Well I doubt they are vital to most users, however, you might be able to find some use for these
    tools. QUOTE PingInfoView The simplest of all Internet tools is the humble ping command,
    which lets you use the command prompt to contact a Web site and see if it is alive and responds to
    your ping request. It also resolves host names to IP addresses--in other words, if you issue the
    command ping www.pcworld.com, it will tell you the site's associated IP address. And it also
    tells you the speed of the connection and response. The free PingInfoView makes the simpl....
  10. A Good File Explorer For Windows Xp?
    what's a better alternative to explorer (6)
    Hi, although it has some useful features and it's (i'd hope so...) well integrated with the
    shell, the file explorer that comes with windows xp is not the best we can ask for... so I've
    always tried to use various other pieces of softwares randomly found on the net whenever I've
    had to intensively work on my file directory... still I haven't found a very good one, all
    those I tried have some kind of bug or they are not really user friendly in some occasions... would
    anyone suggest a good FREEWARE file explorer? thanks /wink.gif" style="vertical-al....
  11. How Would I Share An Internet Connection Over Wan?
    or through phone wires (5)
    The title really explains it all. After setting up connection sharing through LAN and on one
    computer, I had a thought "well could I use this to share an internet connection from a wide
    distance?". Well could I? So say now that my brother who lives a mile down the road who has no
    internet connection, but a phoneline, Could he set up a connection going to my IP? I could use a
    service like DynamicIP where theres a domain "summoned" towards my dynamic IP (or i could change to
    a broadband company that gives me a static IP) The software I'm using is called CCProxy It&....
  12. Signs Of Victory Against The Internet Spy Phorm
    (6)
    Fellow trappers, i bring news of victory against an unparalleled and evil enemy, the internet
    spy-lord known as Phorm, formerly 121Media may have been defeated by the grand-lord Information
    commissioners Office (ICO) Ok maybe ive been playing RPGs too long but the jist is this: Those who
    have been around a bit will remember my post in this very sub-forum about Phorm, Phorm used to be
    called 121Media who created terribly spy/adware problems for millions of users, they renamed
    themselves Phorm and are taking a less direct route to spying, they will be installed by your IS....
  13. Firefox 3 Sucks - Time For Another Browser
    (48)
    No seriously, I've been using Firefox since 0.x releases. I loved it. Every release, despite
    having no huge features, was a great update. Version 3, however, totally messes everything up. Its
    default interface is ugly. And no Home button, really ??? (ps. I kno i can drag it back from the
    bookmarks toolbar but still, its stupid). The address bar search thing. I liked the concept, but I
    am so used to the old way, this actually distracts me, I don't want to search my history
    everytime I type a new address. Plus the slide out is huge now making the whole thing feel t....
  14. Micro$oft, Windoze, Internet Exploder, Etc.
    You can probably guess. Hint: "Linsux" (8)
    Don't you just hate it when people call Microsoft, Windows, and Linux derogatory names? Well, I
    do. I think it's just useless, because calling them derogatory names won't get them
    to improve; they'll just sue you or something. Here's a few of the examples of "nicknames"
    of every company that I've heard over the past year: Windows: Windoze, Doors (don't really
    get this one), Losedows ("lose", opposite of "win"), Faildows ("fail", pseudo-opposite of "win")
    Microsoft: Micro$oft ($ meaning money-centered), Microshaft, Microsqu....
  15. Top 10 Most Pirated Software On A Coporate & Internet Level
    (17)
    This information is based on the Software & Information Industry Association Report for 2007 and not
    overall statistics. 2007 Software Titles Most Frequently Pirated By Companies QUOTE 1.
    Symantec Norton Anti-Virus 2. Adobe Acrobat 3. Symantec PC Anywhere 4. Adobe PhotoShop 5. Autodesk
    AutoCAD 6. Adobe DreamWeaver 7. Roxio Easy CD/DVD Creator 8. Roxio Toast Titanium 9. Ipswitch WS_FTP
    10. Nero Ultra Edition 2007 Software Titles Most Frequently Pirated on the Internet QUOTE 1.
    McAfee VirusScan 2. Symantec Norton Anti-Virus 3. McAfee Internet Security Suite....
  16. Increase Internet Bandwidth In Windows Xp
    (9)
    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....
  17. I Am Very Much Addicted To Internet
    addiction to anything is a bad thing (19)
    I AM VERY MUCH ADDICTED TO NET and my freinds used to call me net-eria(means a net being) i
    couldn't concentrate on my studies at that time but i worked over it to overcome that addiction
    now i only spend 10 hours a week on the net only. i think it is not addiction anymore relative to
    50+ hours a week which i earlier used to spend on the net and that too on cheap sites. i think
    maturity comes only after some experience. ....
  18. Internet Connection Sharing With Xbox 360 And A Laptop
    For Windows XP (possibly Vista) (6)
    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....
  19. Setting Up Wireless Internet With Comcast
    (3)
    Okay, so recently i got comcast high speed internet and i have a linksys router, but i am told by a
    bunch of my friends that linksys doesn't really like to work with comcast internet, so i was
    wondering what kind of router i should get. please only post if you HAVE comcast cable internet not
    if you THINK you know the answer. thanks /biggrin.gif" style="vertical-align:middle" emoid=":D"
    border="0" alt="biggrin.gif" />....
  20. Internet Browser For Nintendo Ds
    Only for DS Lite :o (34)
    Hey, I want to rant about something - thats why I am here. Today we went to the mall and I went
    past EB Games (they sell games hence the name). I picked up their catalouge and I was looking
    through it while we were walking around the mall. I saw a page on the Nintendo DS. I have a Nintendo
    DS (not a DS lite) and I think it's a really good system. On this page was the DS Internet
    browser, you of course need to have a Wireless Net connection or a Wi-fi USB Adapator for the DS to
    beable to connect to the net. I wanted a USB Connector anyway so that was no trouble. I wa....
  21. Psp Error- Tut On How To Fix
    When you try to use the internet does your psp get an internal error? (27)
    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.....
  22. Speed Up Your Internet Explorer Fast As Firefox
    Internet Explorer isn't slow (17)
    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 : MaxConnec....
  23. Run Internet Explorer From Command Prompt
    Windows Tips (21)
    Here's a simple way you can run Internet Explorer from the command line... Create a new text
    file that contains the following line: CODE @start "" /b "C:\Program
    Files\Internet Explorer\iexplore.exe" %* Rename the file e.bat Copy this file
    to your profile folder QUOTE C:\Documents and Settings\your_account_name Now you
    can open a command prompt window and type the following CODE e www.trap17.com This will
    start Internet Explorer and open the URL for www.trap17.com....
  24. My Job Sucks!
    tell us, why you hate your job (27)
    Just got home from work so this topic feels so natural now... Anyways I work at blockbuster, have
    been working here for 3 years now and am just beginning to be disgruntled with it. Reasons why I
    hate my job -My store is a training store, when I ask for more hours I get denied or get a short
    shift, despite the fact that I've been working here more than anyone ESPECIALLY TRAINEES. -My
    boss brags that she's giving me a nice raise, when in fact it just makes up for the fact that I
    started below what your supposed to start at and my last raise was a nickel. She wa....
  25. Paypal Horror Stories
    PAYPAL SUCKS (10)
    i found this website about horror stories on the use of pay pal i gues sthese guys really do steal
    your money. click for the truth I'm glad i don't do a business with these people or i be
    broke from them stealign from me.....
  26. Rogers : Internet Service Injustice
    cable connection (10)
    To those of you that know company : Rogers that provides both internet and TV and even more. When
    you are a customer for a long time with them you always get a bunch of stuff cheaper than other
    people and you also have to make them see that u want it cheaper or in some cases free lol i had to
    find out the hard way. When they released cable extreme internet connection both me and my friend
    were both long time users and we both had same old crapy modems. So what do i do... i call Rogers
    and ask em if i could upgrade to cable extreme and they say i have to pay $100 for....
  27. Css Trick: Hide Disabled Internet Explorer Vertical Scrollbar
    (18)
    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....
  28. Test Your Php Pages W/o Upload/internet
    complete *working* guide on how to test your php pages (57)
    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....
  29. What Do You Do When Two Friends Betray You?
    yeah.. stupid ass friends (17)
    Here is the basic wind down taken from my livejournal "...Oh well that is how it goes in my life.
    Other then that, my two "friends" who should have my back are being total *BLEEP*es. Scott is mad at
    me for wanting him to cover me FOR THE FIRST *BLEEP*ING TIME I HAVE EVER ASKED HIM FOR *BLEEP*. I
    was there when he broke up with Dani, when no one else wanted to be his friend I was there, when
    people purposely dismissed him for parties and crap I invited myself so that he had an excuse to be
    invited, I was there when his dad died, I was the only one who went to his birthda....
  30. Firefox Or Internet Explorer
    that is the question... (294)
    I see as firefox as my main choice but its really up to you on what you choose: Firefox is an
    open-source (Wired mag) Internet browser, thought up by a 18 year old (completed when 19) after many
    frustrations with Internet explorer. It has a built in pop up blocker that has never once fail me,
    and is 100% skinnable. It includes TABS, which is a fature that lets you see more than one page in
    one window. Because of its new scent, noone has bagan to look for a way to deliver viruses thrrough
    the browser. It has promoted its service by Spreadfirefox.com, which gives of webba....

    1. Looking for internet, explorer, sucks, yeah,

Searching Video's for internet, explorer, sucks, yeah,
Similar
Surf
Internet
Without
Opening It.
Useful For
School -
How-to!
Best
Software And
Explorer -
What do you
think is the
most useful
software
So Yeah,
Women Are
Screwed
Up... - or
at least
this one
was...
Sending Free
Sms Over
Internet!
;
Need Help
For Seo And
Internet
Marketing
Works! -
Need
help!
3;
Qoodaa Mnp2p
Creates A
New Epoch Of
Internet
Transfer
Ie6 - When
Will Be Dead
? -
discution
about
developers
and Internet
Explorer 6
The Internet
Where
Everyone Is
Equal - The
only place
you can be
really
equall
14 Vital
Internet
Tools -
Mostly Free
A Good File
Explorer For
Windows Xp?
- what's
a better
alternative
to explorer
How Would I
Share An
Internet
Connection
Over Wan? -
or through
phone wires
Signs Of
Victory
Against The
Internet Spy
Phorm
Firefox 3
Sucks - Time
For Another
Browser
Micro$o
ft, Windoze,
Internet
Exploder,
Etc. - You
can probably
guess. Hint:
"Linsux&
#34;
Top 10 Most
Pirated
Software On
A Coporate
&
Internet
Level
Increase
Internet
Bandwidth In
Windows Xp
I Am Very
Much
Addicted To
Internet -
addiction to
anything is
a bad thing
Internet
Connection
Sharing With
Xbox 360 And
A Laptop -
For Windows
XP (possibly
Vista)
Setting Up
Wireless
Internet
With Comcast
Internet
Browser For
Nintendo Ds
- Only for
DS Lite :o
Psp Error-
Tut On How
To Fix -
When you try
to use the
internet
does your
psp get an
internal
error?
Speed Up
Your
Internet
Explorer
Fast As
Firefox -
Internet
Explorer
isn't
slow
Run Internet
Explorer
From Command
Prompt -
Windows Tips
My Job
Sucks! -
tell us, why
you hate
your job
Paypal
Horror
Stories -
PAYPAL SUCKS
Rogers :
Internet
Service
Injustice -
cable
connection
Css Trick:
Hide
Disabled
Internet
Explorer
Vertical
Scrollbar
Test Your
Php Pages
W/o
Upload/inter
net -
complete
*working*
guide on how
to test your
php pages
What Do You
Do When Two
Friends
Betray You?
- yeah..
stupid ass
friends
Firefox Or
Internet
Explorer -
that is the
question...
advertisement



Internet Explorer Sucks - Yeah, I said it.



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE