Fixes #7590 wrongful use of break tag (#7624)
[openemr.git] / contrib / forms / ped_GI / new.php
blob991dd79e15947ed56b447b3ea7a142908248d670
1 <?php
3 // file new.php for pediatric EMESIS 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 require_once("../../globals.php");
17 require_once("../../../library/api.inc.php");
19 use OpenEMR\Core\Header;
21 formHeader("Pediatric GI Evaluation");
27 <html><head>
29 <?php Header::setupHeader(); ?>
31 </head>
33 <body class="body_top">
37 <!--REM note that every input method has the same name as a valid column, this will make things easier in save.php -->
41 <br />
43 <form method='post' action="<?php echo $rootdir;?>/forms/ped_GI/save.php?mode=new" name='ped_GI' >
47 <!-- the form goes here -->
49 <?php
51 $obj = array(); // just to avoid undeclared var warning
53 require('form.php'); // to use a single file for both, empty and editing
57 <!-- the form ends here -->
61 <!--REM note our nifty jscript submit -->
63 <a href="javascript:top.restoreSession();document.ped_GI.submit();" class="link_submit">[Save]</a>
65 <br />
69 <a href="<?php echo $GLOBALS['form_exit_url']; ?>" class="link" onclick="top.restoreSession()">[Don't Save]</a>
71 </form>
75 <?php
77 formFooter();