Sign in
apache
/
zetacomponents
/
trunk
/
.
/
Document
/
docs
/
tutorial
/
01_02_write_html.php
blob: 2e3405879802a97d97e21b0f7e0405e662df0f98 [
file
] [
log
] [
blame
]
<?
php
require
'tutorial_autoload.php'
;
$docbook
=
new
ezcDocumentDocbook
();
$docbook
->
loadFile
(
'docbook.xml'
);
$html
=
new
ezcDocumentXhtml
();
$html
->
createFromDocbook
(
$docbook
);
echo $html
->
save
();
?>