When submitting a query from PHP code and using ezpdf to generate the output in PDF format. Is is possible to wrap the column headings ?
e.g
Select FiistName AS 'First Name'
From Names
Where FirstName = 'Smith'
Output
First Name
Smith
Desired output
First
Name
Smith
e.g
Select FiistName AS 'First Name'
From Names
Where FirstName = 'Smith'
Output
First Name
Smith
Desired output
First
Name
Smith
Comment