Cross Browser Compatability – Web Resources

http://www.zvon.org/xxl/xhtmlReference/Output/comparison.html compares  Strict and Transitional XHTML http://www.w3schools.com/ is a great web site for learning different web technologies http://www.quirksmode.org/dom/compatibility.html covers W3C DOM compatibility among different browsers and platforms http://www.w3schools.com/browsers/browsers_stats.asp provides up to date browser usage statistics http://nexgenmedia.net/evang/iemozguide/ provides migration guide fromContinue reading… Cross Browser Compatability – Web Resources

Introduction to PHP’s PEAR classes : Comparing normal Database connections with PEAR classes.

PHP Database Abstraction: Abstraction is a technique which simplifies something complex. It does this by removing non-essential parts of the object, allowing us to concentrate on the important parts. PEAR’s DB classes are one such database abstraction layer, and inContinue reading… Introduction to PHP’s PEAR classes : Comparing normal Database connections with PEAR classes.

Difference between String str=”abc” and str=new String(”abc”)?

1) using new operator:- String st=new String(“abc”); 2) Without using new operator:- String st=”abc”; Once string object is created with or without new operator contents of string object cannot be modified. But we can modify String reference variable. when youContinue reading… Difference between String str=”abc” and str=new String(”abc”)?