$tag = <some html tag>;
$a = new DOMDocument();
$a->loadHTML($tag);
im newly using DOMDocument php i have read the documentation but still didn't understand why loadHTML() returning 1, can someone explain it to me?? Thank you in advance
$tag = <some html tag>;
$a = new DOMDocument();
$a->loadHTML($tag);
im newly using DOMDocument php i have read the documentation but still didn't understand why loadHTML() returning 1, can someone explain it to me?? Thank you in advance