This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include ('Zend/Mime.php'); | |
include ('Zend/Mail/Transport/Abstract.php'); | |
include ('Zend/Mail.php'); | |
$mail = new Zend_Mail(); | |
// create the vcard | |
$vcardText="BEGIN:VCARD\n VERSION:2.1\nFN:[name]\TEL;HOME;VOICE:[phone]\nEMAIL;PREF;INTERNET:[email]\nEND:VCARD"; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
App::import('Vendor', 'Upload.S3'); | |
Configure::load('Upload.config'); | |
class UploadComponent extends Object { | |
// set name of the component | |
public $name = 'Upload'; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Database { | |
var $hostname = ''; | |
var $username = ''; | |
var $password = ''; | |
var $database = ''; | |
var $link = ''; | |
var $i = 0; |
NewerOlder