Ten years ago, Microsoft Internet Explorer and Netscape Navigator were still fighting each to be the most popular web browser. Internet Explorer won the battle… easily, in fact. Support for Netscape finally ended in 2007, and since then Netscape has only been a byword. Shipping with (and being a fundamental part of) Windows has given IE a near monopoly over the web browser market. Is it the best web browser? Back when it was just IE and Netscape, I preferred IE. Now I would take any of the other browsers over IE. Ever since Firefox emerged in 2004, we’ve seen a change from what browsers were, to what they can be. We’ve seen innovations like tabbed browsing, speed dial, useful extensions, greater web standards support and faster JavaScript engines. It is also no surprise that these innovations are not coming from Internet Explorer; they are coming from all the newer browsers. Because of this, the market for these other browsers are growing.
These are articles that have to do with Web Development that I have bookmarked. You can view all of my bookmarked articles on my Google Reader page.
7 more articles…
Last summer as an intern at Synapse Studios, I contributed several posts to the company blog. Since we are a web development company, most of my posts had to do with web development. Here are the links to each of those articles in case anyone is interested. They are listed in reverse chronological order.
This post is also on HTMList. It wasn’t written by me, but it was written about me.
Category: On The Web, Web DevelopmentIt turns out that the trim() functions of PHP are even more useful than I originally thought. The trim functions ( trim(), ltrim() and rtrim() ) are normally used to trim whitespace from the ends of strings. However, the definition of trim from the PHP Manual states: “Strip whitespace (or other characters) from the beginning and end of a string”
. I added emphasis (literally) to the part that says “(or other characters)”. That means we can trim anything from a string. I hope you can see the value of this. Well, I’ll show you a brief example anyway after the fold.