CCR Import, made changes per comments in github.
[openemr.git] / contrib / forms / example / new.php
blob928bef1f94f4fbdce0766b2d17ed1d16155f9e6a
1 <?php
3 include("../../../library/api.inc");
4 //use the suggested header
5 formHeader("newerpatient form");
6 ?>
8 <--REM note that every input method has the same name as a valid column, this will make things easier in save.php -->
9 <form method=post action="./save.php" name='newerpatient'>
10 <span class=title>Newer Patient Encounter Form</span>
11 <br>
13 <span class=text>Why this new visit?</span><br>
14 <textarea name=reason cols=40 rows=6 wrap=virtual></textarea>
16 <br>
18 <span class=text>do you like cats?</span> <input type=text name=cats>
20 <br>
22 <--REM note our nifty jscript submit
23 <a href="javascript:top.restoreSession();document.newerpatient.submit();" class="link_submit">[Save]</a>
24 <br>
25 </form>
27 <br><br>
28 <hr>
30 <?php
31 formFooter();