Goldenweb.it homepage

ANNUNCI | DIRECTORY | FONTS | ICONE | NEWSGROUPS | TOP25 | WALLPAPERS

English version  

Scuola di cucina CAST Alimenti Brescia.
La scuola di cucina Cast Alimenti organizza corsi per cuoco, pasticcere, gelatiere, panificatore, pizzaiolo o barman. Segui i corsi di cucina e di formazione professionale organizzati da Cast e diventa professionista nel mestiere che preferisci.
Piscine
La guida informa sulle varie tipologie di piscine presenti in commercio offrendo una panoramica dettagliata sui vari modelli, comprese le minipiscine.

GoldenWeb.it Directory "Premium" Links - Il tuo link qui...



DOMDocument->saveHTML

(no version information, might be only in CVS)

DOMDocument->saveHTML --  Dumps the internal document into a string using HTML formatting

Description

string DOMDocument->saveHTML ( void )

Creates an HTML document from the dom representation. This function usually is called after building a new dom document from scratch as in the example below.

Esempio 1. Creating a simple HTML document header

<?php
$doc
= new DOMDocument("1.0");
$root = $doc->createElement("HTML");
$root = $doc->appendChild($root);
$head = $doc->createElement("HEAD");
$head = $root->appendChild($head);
$title = $doc->createElement("TITLE");
$title = $head->appendChild($title);
$text = $doc->createTextNode("This is the title");
$text = $title->appendChild($text);
echo
"<PRE>";
echo
$doc->saveHTML();
echo
"</PRE>";
?>

See also DOMDocument->loadHTML(), DOMDocument->loadHTMLFile() and DOMDocument->saveHTMLFile().