legacy-dotfiles/emacs.d/nxhtml/tests/in/bug492366-test.php
Tom Willemsen 94d2fc1815 Django, org
* Added nxhtml, mostly for django support.

  * Changed some org settings.
2011-03-07 09:04:49 +01:00

21 lines
460 B
PHP

<?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();
?>