]> git.rkrishnan.org Git - .emacs.d.git/blob - emacs/nxhtml/tests/in/bug492366-test.php
submodulized .emacs.d setup
[.emacs.d.git] / emacs / nxhtml / tests / in / bug492366-test.php
1 <?php
2 function render()
3 {
4   $html =<<<HTML
5               <head>
6               </head>
7               <body>
8                 <div id="some_id" class="some_class"></div>
9                 <div id="some_id" class="some_class"></div>
10                 <form method="post" id="" action="">
11                 </form>
12                 <form method="get" id="id2" action="do.php">
13                 </form>
14               </body>
15 HTML;
16
17 echo $html;
18 }
19
20 render();
21               ?>