array( //The name of the column is case-sensitive
'formatBegin'=>'', //prefix formatting inside column
'formatEnd'=>'', //sufffix formatting inside column
'colBegin'=>'', //override the default column formatting prefix
'colEnd'=>'', //override the default column formatting suffix
'callback'=>'strrev' //output data after being processed by the named function.
), //Note: callback needs to be in the format: function (p1), return a string, and can be any function (even user)
'Column2'=>array( //Second column-specific formatter array (limited in number only by the column count)
'colBegin'=>'',
),
);
//Call the table generation function with our (modified) default parameters
echoTable($tblFormat, $tblQuery, $dbData);
?>