fixed a couple of silly display errors
[openemr.git] / contrib / forms / ped_pain / new.php
blobc3ba6c6603441002b0a26678611451b1a8a7b5a0
1 <?
2 // file new.php
3 // presents a blank form for evaluating pediatric pain
4 // this file made by andres@paglayan.com on 2004-09-23
5 // input designed by Lowell Gordon, MD lgordon@whssf.org
6 // to max the billing complexity coding
8 include_once("../../globals.php");
9 include_once("../../../library/api.inc");
10 formHeader("Pediatric Pain Evaluation");
13 <html><head>
14 <link rel=stylesheet href="<?echo $css_header;?>" type="text/css">
15 </head>
16 <body <?echo $top_bg_line;?> topmargin=0 rightmargin=0 leftmargin=2 bottommargin=0 marginwidth=2 marginheight=0>
18 <!--REM note that every input method has the same name as a valid column, this will make things easier in save.php -->
20 <br>
21 <form method='post' action="<?echo $rootdir;?>/forms/ped_pain/save.php?mode=new" name='ped_pain' target='Main' >
23 <!-- the form goes here -->
24 <?php
25 $obj=array(); // just to avoid undeclared var warning
26 include ('form.php'); // to use a single file for both, empty and editing
28 <!-- the form ends here -->
30 <!--REM note our nifty jscript submit -->
31 <a href="javascript:document.ped_pain.submit();" class="link_submit">[Save]</a>
32 <br>
34 <a href="<?echo "$rootdir/patient_file/encounter/patient_encounter.php";?>" class="link">[Don't Save]</a>
35 </form>
39 <?php
40 formFooter();