Toms Homepage
  Home    Downloads    Your Account    Forums  
  Create an account
Modules
· Home
· Games
· My Gallery
· PHP Manual
· PHP-Nuke HOWTO
· Web Links
· Your Account
 
Who's Online
Welcome, Anonymous
Nickname

Password

Security Code
Security Code
Type Security Code


(Register)

Membership:
Latest: OmaOchoa
New Today: 148
New Yesterday: 334
Overall: 62777

People Online:
Visitors: 77
Members: 8
Total: 85

Online Now:
 Arennywow
Turkey AlonzoFor
COM Marcela05
COM EdmundoBe
COM JamaalT74
 JustinQCX
COM Ingrid26M
INFO FaustoMcn
 
DOMDocument->loadHTML()

DOMDocument->loadHTML()

DOMDocument->loadHTML() --  Load HTML from a string

Description

class DOMDocument {

bool loadHTML ( string source )

}

The function parses the HTML contained in the string source. Unlike loading XML, HTML does not have to be well-formed to load. This function may also be called statically to load and create a DOMDocument object. The static invocation may be used when no DOMDocument properties need to be set prior to loading.

Parameters

source

The HTML string.


Return Values

Returns TRUE on success or FALSE on failure.

Examples

Example 1. Creating a Document

<?php
$doc
= DOMDocument::loadHTML("<html><body>Test<br></body></html>");
echo
$doc->saveHTML();

$doc = new DOMDocument();
$doc->loadHTML("<html><body>Test<br></body></html>");
echo
$doc->saveHTML();
?>


All logos and trademarks in this site are property of their respective owner. The comments are property of their posters, all the rest © 2004 by Tom Nitzschner.
Web site engine code is Copyright © 2003 by PHP-Nuke. All Rights Reserved. PHP-Nuke is Free Software released under the GNU/GPL license.
Page Generation: 0.112 Seconds

:: VereorLCARS phpbb2 style by Vereor :: PHP-Nuke theme by www.nukemods.com ::