iDimensionz
iDimensionz


Welcome, Guest!     Login
Don’t have an account?  Create one NOW!

Cloud Services…Sky High Ambitions for Web Services

January 29th, 2008

Mention Service Oriented Architecture (SOA) in a techie related conversation and you’ll be viewed as someone who knows the cutting edge of IT. (Explain SOA correctly and you may even get some bonus points along the way too.) Read the rest of this entry »

Getting PHP PDT 1.0 to work in Eclipse Europa

July 4th, 2007

After downloading and installing the full version of the Eclipse PDT (PHP Development Tools), I was ready to start using Eclipse in my SimplyMEPIS (basically Ubuntu) distro to edit PHP code. To my surprise, the PHP perspective was not working. Read the rest of this entry »

Review: SanDisk Sansa e200 series…an iPod killer?

March 8th, 2007

The Apple iPod is resting on in laurels while other companies are taking great strides at providing features which give consumers more flexibility. Take, for example, the SanDisk Sansa e200 series media players. These devices are about the same dimensions (maybe slightly larger) as an iPod Nano but provide a plethora of features for a great price. Read the rest of this entry »

Creating HTML formatted e-mail in PHP

March 4th, 2007

Here is some example code for sending HTML formatted e-mail via the PHP mail function:

$from="YourFromAddress@yourdomain.com";
$to="SendThisTo@TheirDomain.com";
$body="<html><body>Add your HTML code here</body></html>";
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: $from <$from>\r\n";
$headers .= "Reply-To: $from <$from>\r\n";
$headers .= "X-Mailer: PHP\r\n";
mail($to,"Put your e-mail subject here!", $body, $headers);


;