Fixed php short tags
[openemr.git] / contrib / forms / well_child_care / new.php
blob4cdf3b4b913591df0226415f79a3f6f9e15f0fe0
1 <?php
3 // file new.php for well child evaluation
5 // input designed by Lowell Gordon, MD lgordon@whssf.org
9 include_once("../../globals.php");
11 include_once("../../../library/api.inc");
13 include_once("C_WellChildCare.class.php");
17 <html><head>
18 <?php html_header_show();?>
20 <link rel=stylesheet href="<?php echo $css_header;?>" type="text/css">
22 </head>
24 <body class="body_top">
28 <!--REM note that every input method has the same name as a valid column, this will make things easier in save.php -->
32 <br>
34 <form method='post' action="<?php echo $rootdir;?>/forms/well_child_care/save.php?mode=new" name='well_child_care' >
38 <!-- the form goes here -->
40 <?php
42 $form=new C_WellChildCare($pid);
44 $a=$form->put_form();
48 <!-- the form ends here -->
52 <!--REM note our nifty jscript submit -->
54 <a href="javascript:top.restoreSession();document.well_child_care.submit();" class="link_submit">[Save]</a>
56 <br>
60 <a href="<?php echo $GLOBALS['form_exit_url']; ?>" class="link" onclick="top.restoreSession()">[Don't Save]</a>
62 </form>
66 <?php
68 formFooter();