iDimensionz
iDimensionz


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

Archive for the ‘Programming’ Category

Zend Framework now available to iDimensionz Web Hosting Customers

Thursday, June 5th, 2008

iDimensionz made version 1.5.2 of the Zend Framework available to all of its hosting customers today.  According to the Zend Framework web site, “Zend Framework is focused on building more secure, reliable, and modern Web 2.0 applications & web services, and consuming widely available APIs from leading vendors”.  To view the current version of Zend Framework available from iDimensionz, visit our Zend Framework page.  That page uses the Zend_Version class to display the current default version available.  Other versions may be available.  Contact iDimensionz Support for more information.

Getting PHP PDT 1.0 to work in Eclipse Europa

Wednesday, 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. (more…)

Creating HTML formatted e-mail in PHP

Sunday, 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);


;