Archive for the ‘Programing’ Category

How to create row and column using CSS without using table

Wednesday, April 23rd, 2008

This new idea will help designers on how to make their own row and column using CSS. read more | digg storySHARETHIS.addEntry({ title: "How to create row and column using CSS without using table", url: "http://whitesandsdigital.com/wordpress/2008/04/23/how-to-create-row-and-column-using-css-without-using-table/" });

Web Site Clinic May 8 in Plano Texas

Wednesday, April 23rd, 2008

At this site clinic, you will interact with seasoned interactive and search marketing professionals who will be able to analyze and critique your site from a search engine optimization, pay-per-click marketing, usability, design and conversion rate analysis standpoint. read more | digg storySHARETHIS.addEntry({ title: "Web Site Clinic May 8 in ...

Adobe Fireworks Tutorials and Downloads - Best of

Wednesday, April 23rd, 2008

Adobe Fireworks is the industry leader for prototyping and rapid web-site building. Some of you may not be aware of this, as you may be using Photoshop for each phase of web-site production. The articles, tutorials, and resources gathered here will convince you of the power of this application. read more ...

Creating a PayPal Payment Form

Wednesday, April 23rd, 2008

One of the easiest ways to sell stuff is through PayPal. This tutorials shows you how you can set up a PayPal payment form on your site. read more | digg storySHARETHIS.addEntry({ title: "Creating a PayPal Payment Form", url: "http://whitesandsdigital.com/wordpress/2008/04/23/creating-a-paypal-payment-form/" });

Actually useful XHTML and CSS reference!

Tuesday, April 22nd, 2008

Still using w3schools? Go to http://xhtml.com/en/xhtml/reference/ and http://xhtml.com/en/css/reference/ ! read more | digg storySHARETHIS.addEntry({ title: "Actually useful XHTML and CSS reference!", url: "http://whitesandsdigital.com/wordpress/2008/04/22/actually-useful-xhtml-and-css-reference/" });

Ajax image galleries

Tuesday, April 22nd, 2008

A handful of commentaries and links to Ajax image galleries scripts, including Slimbox [lightbox] and Mootools. read more | digg storySHARETHIS.addEntry({ title: "Ajax image galleries", url: "http://whitesandsdigital.com/wordpress/2008/04/22/ajax-image-galleries/" });

Blogger line height bug fix

Monday, April 21st, 2008

5 easy steps to get rid of the annoying line-spacing bug on your Blogger blog. read more | digg storySHARETHIS.addEntry({ title: "Blogger line height bug fix", url: "http://whitesandsdigital.com/wordpress/2008/04/21/blogger-line-height-bug-fix/" });

How To Make Own Wordpress Theme Part IV

Tuesday, April 15th, 2008

Getting closer to finishing your first wordpress theme. However there ’s one important thing left - sidebar. That’s right, every blog needs a well organized and user-friendly navigation. It’s actually pretty simple. We just need to call few wordpress functions and add few lines to the stylesheet :) read more | digg ...

Quick Tip - How to Connect to MySQL using Perl

Monday, April 14th, 2008

This is a Quick Tip on how to connect to a MySQL database using Perl. Even though many other languages are sneaking their way onto Perl's turf. There is still a great demand for Perl on the web, so don't forget one of it's primary uses. Here's the code: #!/usr/bin/perl use DBI; $database ...

Quick Tip - How to connect to MySQL with PHP

Monday, April 14th, 2008

This is a Quick Tip on how to connect to MySQL with PHP. We have all done it from time to time, but sometimes we forget just how to connect to those pesky MySQL databases directly using PHP. So here's how it's done: <?php function open( ){$db = mysql_connect( 'localhost', 'root', ...