Quantcast
Channel: TecShout » PHP
Browsing latest articles
Browse All 3 View Live

Send email from PHP page using GMail SMTP server

Following code helps the php developers to send email using gmail smtp server. <?php require_once "Mail.php"; $from = "<fromaddress@domain.com>"; $to = "<toaddress@domain.com>"; $subject...

View Article



Send HTML formatted email in PHP

Following function helps to send HTML formatted email using PHP <?php function htmlMail() { $to = "toemail@example.com"; $subject = "email subject"; $mail_body = '<html> <body...

View Article

XML parser in PHP

This is a useful function for quick and easy xml parsing when an extension is not available:   <?php   /**    * Convert XML to an Array    *    * @param string $XML    * @return array    … Continue...

View Article
Browsing latest articles
Browse All 3 View Live




Latest Images