professional-sql-03-lib-config.php / php
<?php // set time zone to use date/time functions without warnings date_default_timezone_set('America/New_York'); // local support directories define('QUEUE_DIR', '/srv/apache/wrox/ch_03/queue'); define('REPLY_DIR', '/srv/apache/wrox/ch_03/replies'); // address and port for POP3 server define('POP3_SERVER', 'mail.example.com'); define('POP3_PORT', 110); // account information for list activity address define('LIST_EMAIL', 'list@example.com'); define('LIST_USER', 'list'); define('LIST_PASSWORD', 'secret'); // account information for list management address define('MANAGE_EMAIL', 'manage@example.com'); define('MANAGE_USER', 'manage'); define('MANAGE_PASSWORD', 'pa55w0rd'); ?>
(C) Æliens 20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.