with mysql pgsql intl support
$ brew install php --with-apache --with-mysql --with-pgsql --with-intl
date.timezone = Europe/Vienna
/** | |
* Lining up form elements | |
*/ | |
<?php | |
$action = (isset($_POST['__action'])) ? $_POST['__action'] : null; // is the action we have to take | |
$err = array(); // empty array to hold any processing errors | |
if($action){ // there is an action | |
if($action == 'email'){ | |
// we must process the email form | |
require_once('send.php'); // require the file needed to process email form |