]> Softwares of Agnibho - simpleipd.git/blob - www/vitek.php
61d23fe66527811f055f3903d22df47ab0a33fbc
[simpleipd.git] / www / vitek.php
1 <?php
2 require(dirname(__DIR__)."/require.php");
3 $pid=$_GET["pid"];
4 if(!empty($_GET["req"])){
5 $req="&req=".$_GET["req"];
6 }
7 else{
8 $req="";
9 }
10 if(!empty($_GET["sample"])){
11 $sample="&sample=".$_GET["sample"];
12 }
13 else{
14 $sample="";
15 }
16 if(!empty($_GET["src"]) && $_GET["src"]=="index"){
17 $src="&src=index";
18 }
19 else{
20 $src="";
21 }
22 ?>
23 <!DOCTYPE html>
24 <html>
25 <head>
26 <?php include(CONFIG_LIB."head.php");?>
27 <title>Culture/Sensitivity</title>
28 </head>
29 <body>
30 <div class="container">
31 <div class="card">
32 <div class="card-body">
33 <h4 class="card-title">Type of Organism</h4>
34 <ul class="list-group">
35 <li class="list-group-item"><a href="antibiogram.php?pid=<?php echo $pid;?>&form=report-as-grampos<?php echo $req;?><?php echo $sample;?><?php echo $src;?>">Vitek Report (Gram Positive)</a></li>
36 <li class="list-group-item"><a href="antibiogram.php?pid=<?php echo $pid;?>&form=report-as-gramneg<?php echo $req;?><?php echo $sample;?><?php echo $src;?>">Vitek Report (Gram Negative)</a></li>
37 <li class="list-group-item"><a href="antibiogram.php?pid=<?php echo $pid;?>&form=report-as-fungal<?php echo $req;?><?php echo $sample;?><?php echo $src;?>">Vitek Report (Fungal)</a></li>
38 </ul>
39 </div>
40 </div>
41 </div>
42 <?php include(CONFIG_LIB."foot.php");?>
43 </body>
44 </html>