Change formatting of initial comment block.
[openemr.git] / contrib / forms / ped_fever / new.php
blobbe32d91aa76d06e6f17de93f385b6cb6fcc6f4a3
1 <?php
3 // file new.php for pediatric FEVER evaluation
5 // presents a blank form for evaluating pediatric FEVER
7 // this file made by andres@paglayan.com on 2004-09-23
9 // input designed by Lowell Gordon, MD lgordon@whssf.org
11 // to max the billing complexity coding
15 include_once("../../globals.php");
17 include_once("../../../library/api.inc");
19 formHeader("Pediatric Fever Evaluation");
23 <html><head>
24 <?php html_header_show();?>
26 <link rel="stylesheet" href="<?php echo $css_header;?>" type="text/css">
28 </head>
30 <body class="body_top">
34 <!--REM note that every input method has the same name as a valid column, this will make things easier in save.php -->
38 <br>
40 <form method='post' action="<?php echo $rootdir;?>/forms/ped_fever/save.php?mode=new" name='ped_fever' >
44 <!-- the form goes here -->
46 <?php
48 $obj=array(); // just to avoid undeclared var warning
50 include ('form.php'); // to use a single file for both, empty and editing
54 <!-- the form ends here -->
58 <!--REM note our nifty jscript submit -->
60 <a href="javascript:top.restoreSession();document.ped_fever.submit();" class="link_submit">[Save]</a>
62 <br>
66 <a href="<?php echo $GLOBALS['form_exit_url']; ?>" class="link" onclick="top.restoreSession()">[Don't Save]</a>
68 </form>
72 <?php
74 formFooter();