fork download
  1. <?php
  2.  
  3. $xml_document .= "<raiz>\n";
  4. $xml_document .= "\t<monet></monet>\n";
  5. $xml_document .= "\t<picasso>\n";
  6. $xml_document .= "\t\t<quadro></quadro>\n";
  7. $xml_document .= "\t<picasso>\n";
  8. $xml_document .= "</raiz>\n";
  9.  
  10. echo $xml_document;
Success #stdin #stdout #stderr 0.03s 52432KB
stdin
Standard input is empty
stdout
<raiz>
	<monet></monet>
	<picasso>
		<quadro></quadro>
	<picasso>
</raiz>
stderr
PHP Notice:  Undefined variable: xml_document in /home/FGhQ8d/prog.php on line 3