01.
<?php
02.
require_once
'PHPWord.php'
;
03.
04.
05.
$PHPWord
=
new
PHPWord();
06.
07.
08.
$section
=
$PHPWord
->createSection();
09.
10.
$PHPWord
->addFontStyle(
'rStyle'
,
array
(
'bold'
=>true,
'italic'
=>true,
'size'
=>16));
11.
$PHPWord
->addParagraphStyle(
'pStyle'
,
array
(
'align'
=>
'center'
,
'spaceAfter'
=>100));
12.
$section
->addText(
'Customer Report'
,
'rStyle'
,
'pStyle'
);
13.
14.
15.
$styleTable
=
array
(
'borderSize'
=>6,
'borderColor'
=>
'006699'
,
'cellMargin'
=>80);
16.
$styleFirstRow
=
array
(
'borderBottomSize'
=>18,
'borderBottomColor'
=>
'0000FF'
,
'bgColor'
=>
'66BBFF'
);
17.
18.
19.
$styleCell
=
array
(
'valign'
=>
'center'
);
20.
$styleCellBTLR
=
array
(
'valign'
=>
'center'
,
'textDirection'
=>PHPWord_Style_Cell::TEXT_DIR_BTLR);
21.
22.
23.
$fontStyle
=
array
(
'bold'
=>true,
'align'
=>
'center'
);
24.
25.
26.
$PHPWord
->addTableStyle(
'myOwnTableStyle'
,
$styleTable
,
$styleFirstRow
);
27.
28.
29.
$table
=
$section
->addTable(
'myOwnTableStyle'
);
30.
31.
32.
$table
->addRow(200);
33.
34.
35.
$table
->addCell(1500,
$styleCell
)->addText(
'CustomerID'
,
$fontStyle
);
36.
$table
->addCell(1500,
$styleCell
)->addText(
'Name'
,
$fontStyle
);
37.
$table
->addCell(1500,
$styleCell
)->addText(
'Email'
,
$fontStyle
);
38.
$table
->addCell(1500,
$styleCell
)->addText(
'CountryCode'
,
$fontStyle
);
39.
$table
->addCell(1500,
$styleCell
)->addText(
'Budget'
,
$fontStyle
);
40.
$table
->addCell(1500,
$styleCell
)->addText(
'Used'
,
$fontStyle
);
41.
42.
43.
$objConnect
= mysql_connect(
"localhost"
,
"root"
,
"root"
)
or
die
(
"Error Connect to Database"
);
44.
$objDB
= mysql_select_db(
"mydatabase"
);
45.
$strSQL
=
"SELECT * FROM customer"
;
46.
$objQuery
= mysql_query(
$strSQL
);
47.
while
(
$objResult
= mysql_fetch_array(
$objQuery
))
48.
{
49.
50.
$table
->addRow();
51.
$table
->addCell(1500)->addText(
$objResult
[
"CustomerID"
]);
52.
$table
->addCell(1500)->addText(
$objResult
[
"Name"
]);
53.
$table
->addCell(1500)->addText(
$objResult
[
"Email"
]);
54.
$table
->addCell(1500)->addText(
$objResult
[
"CountryCode"
]);
55.
$table
->addCell(1500)->addText(
$objResult
[
"Budget"
]);
56.
$table
->addCell(1500)->addText(
$objResult
[
"Used"
]);
57.
}
58.
59.
60.
$objWriter
= PHPWord_IOFactory::createWriter(
$PHPWord
,
'Word2007'
);
61.
$objWriter
->save(
'CreateWord2.docx'
);
62.
?>