PHP DOM appendChild()?

Max

New member
test.html
<form id="form1" name="form1" method="post" action="">
<input name="loc" type="text" id="loc"/>
</form>

test.php
<?php
$doc = new DOMDocument();
$doc->loadHTMLFile("test.html");

$loc=$doc->getElementById('loc');
$loc->appendChild(new DOMElement('value','Enter Location'));
echo $doc->saveHTML();
?>

I try to insert some value into the text field ID loc but i get this error:
Fatal error: Call to a member function appendChild() on a non-object in C:\xampp\htdocs\test.php on line 6
 
Back
Top