Posted by
Raj Vaishnaw
comments (0)
In an ideal world, you only need one set of CSS style sheets for your website, and those styles will work with every browser currently being used. This, as every webmaster soon finds out when he/she uses CSS, is a pipe dream. The modern browsers all have uneven levels of implementation of the CSS standards. As though this isn't bad enough, their implementations are often buggy - and they don't share the same bugs! And when you have solved that tricky bit, you find that your site has certain visitors (often your best customers) who, for various reasons, are using older browsers that have only rudimentary support for CSS.What most (if not all) CSS-using webmasters want is a way to specify that ...
Posted by
Raj Vaishnaw
comments (2)
E commerce websites have come of age. As customers realize the ease and benefits of online shopping, the popularity of e-commerce websites have soared like anything else. However, with the increase in the number of Ecommerce websites vying for attention, it has become important for them to devise strategies to be better than the competition and attract more traffic. Here are some new trends and techniques that can help your Ecommerce processes.Focus on User ExperiencesOften we concentrate so much on improving the usability of the website that we completely forget about the user experience. The way users feel on the website goes a long way in influencing their purchase options as well as their ...
Posted by
Raj Vaishnaw
comments (0)
The homepage of your website is the face of your online presence. It is what makes the first impression on online audiences about your company and business. When people type in the URL of your website, they reach your homepage. The homepage, should therefore present a brief introduction about the website and lure visitors to browse further within. The homepage is perhaps the most important page of the website and thus you need to take adequate measures to enhance its usability. Here are some tips to ensure the same.Include a Crisp and Catchy TaglineDraft a tagline for your website homepage that informs about the company and business in a simple sentence. When visitors enter the homepage, they ...
Posted by
Raj Vaishnaw
comments (0)
array( "type"=>"select", // attributes are an associative array "attributes"=>array( "mr"=>"Mr.", "ms"=>"Ms.", "miss"=>"Miss.", "mrs"=>"Mrs.", ), ), "first_name"=>array( "type"=>"text", "size"=>40, "required"=>true, "onclick"=>"alert('test');", "style"=>"border:2px solid #CCCCCC; padding:4px; font-size:15px;", ), "last_name"=>array( "type"=>"text", "size"=>70, "required"=>true, ), );$errors=array();if($_REQUEST['save']){ // do sql here... $sql = "INSERT INTO foo SET insert_date=NOW()"; ...