We are looking, the script that can easily replace the value using PHP DOM. here we have a HTML code that i need to replace
HTML Code
<html>
<head>
<head>
<body>
<div> Explore HISTORY shows, watch videos and full episodes, play games and access articles on historical topics at History.com <p>Miss an episode of your favorite History shows? Go to history.com to catch up on full episodes and video exclusives.</p></div>
<div>Discover what happened today in history. Read about major past events that happened today including special entries on crime, entertainment, and more.</div>
<p>Experience games from your favorite shows, take quizzes, solve puzzles and more!</p>
</body>
</html>
we have to replace the word 'history'(including bold/small char.) with <u>history</u>
the final code would be
<html>
<head>
<head>
<body>
<div> Explore <u>HISTORY</u> shows, watch videos and full episodes, play games and access articles on historical topics at <u>History</u>.com <p>Miss an episode of your favorite <u>History</u> shows? Go to <u>history</u>.com to catch up on full episodes and video exclusives.</p></div>
<div>Discover what happened today in <u>history</u>. Read about major past events that happened today including special entries on crime, entertainment, and more.</div>
<p>Experience games from your favorite shows, take quizzes, solve puzzles and more!</p>
</body>
</html>
This is what I have tried, but it does not work:
<?php
libxml_use_internal_errors(true);
@$doc = new DOMDocument;
$doc->preserveWhiteSpace = false;
$doc->loadHTMLFile('http://www.history.com');
@$body = $doc->getElementsByTagName('body');
$i=0;
while(is_object($finance = $doc->getElementsByTagName("body")->item($i)))
{
foreach($finance->childNodes as $nodename)
{
$node = $doc->createElement("para", "<u>as fasd fasd fadsf</u>");
if(stristr($nodename->nodeValue, 'search')){
$nodename->appendChild($node);
echo $nodename->getAttribute."<br>" ;
echo $nodename->nodeValue."<br>" ;
@$us = true;
}
echo $nodename->nodeValue."<br>" ;
}
$i++;
}
libxml_clear_errors();