legacy-dotfiles/emacs.d/nxhtml/tests/in/bug492366-test.php

22 lines
460 B
PHP
Raw Normal View History

<?php
function render()
{
$html =<<<HTML
<head>
</head>
<body>
<div id="some_id" class="some_class"></div>
<div id="some_id" class="some_class"></div>
<form method="post" id="" action="">
</form>
<form method="get" id="id2" action="do.php">
</form>
</body>
HTML;
echo $html;
}
render();
?>