summaryrefslogtreecommitdiffstats
path: root/emacs.d/nxhtml/tests/in/bug492366-test.php
blob: be84c7506e5425e33014feaedafebcbd528c2795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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();
              ?>