pepe 2 foo 5 '; $check = new XML_check(); //if($check->check_url("http://www.w3.org/")) { if($check->check_string($myxml)) { print("XML is well-formed
"); print("
");
  print("Elements      : ".$check->get_xml_elements()."
"); print("Attributes : ".$check->get_xml_attributes()."
"); print("Size : ".$check->get_xml_size()."
"); print("Text sections : ".$check->get_xml_text_sections()."
"); print("Text size : ".$check->get_xml_text_size()."
"); print("
"); } else { print("XML is not well-formed
"); print($check->get_full_error()); } ?>