Forum Moderators: coopster
$test=array();
$test["title"]="Testing 123";
echo "Title is {$test["title"]}. See it works!";
require_once 'class/DateFunctions.php';
$date = new DateFunctions();
$month = date('M');
$day = date('j');
$output = <<<EOT
<table>
<tr>
<td>Date:</td>
<td>{$month} {$day}{$date->getEnglishOrdinalSuffix($day)}</td>
</tr>
</table>
EOT;
print $output;