Posts Tagged "Web Development"

The Anatomy of Sliders and Scrollers

Everywhere you go on the web you see some sort of slider or scrolling widget on the page. You see a lot of them on blogs advertising the latest posts, you see them on event pages showing shots of the audience and speakers and you even see them on software company homepages showing screenshots of the their latest software release. Sure you can get a ton of different ones from ...

Tips for Building HTML Emails

If you have ever tried your hand at building an HTML email you may have quickly discovered that a lot of the techniques you use for the desktop/mobile web simply don't work. Designing HTML formatted emails these days, and have them work on the plethora of email clients out there flawlessly, is quite a chore. It makes you feel like you are designing with one arm tied behind your back ...

Book Review: PHP 5 in Practice

PHP 5 in Practice is a PHP recipe book from Elliott White III and Jonathan D. Eisenhamer. Its most recent printing was in 2007 and is part of the "Developer's Library" series from Sams Publishing. At 456 pages in length, this book is a bit shorter than some of the other books I have reviewed over the past several months. I have become a big fan of the Developer's Library ...

The Basics of Passing Values From JavaScript to PHP and Back

One of the common questions I often run into from new programmers to JavaScript or PHP is how to pass values back and forth between the two. The quagmire is that JavaScript is a client side language (most of the time) and PHP is a server-side language. Once you know how the process works when someone submits some data on the front end, and how it is manipulated and returned ...

Exciting and Frustrating Times Ahead for Web Developers

Any web developer that has been working in the field for awhile can tell you the frustrations of having to support multiple browsers and testing apps against them. Only until recently we had to just think about Webkit/Gecko browsers and then the rogue IE6/7. It seems like those might be the good old days given the recent news of more fragmentation in browser engines. Just as we think browser makers ...

Creating a Custom YouTube “Sparkbar”

I received a question about this a little while ago and I finally got around to making a blog post about it. The person was asking about making a custom YouTube percentage bar like the one you see on videos right above the thumbs up and thumbs down icons. Intrigued I looked at the code and boiled it down to something that perhaps you all could use for a project... ...