Merge pull request #1384 from bradymiller/cleanup-collections-report_1
[openemr.git] / patients / get_problems.php
blobfa98b072fba60774ed26a2f38985aa4cd67e09be
1 <?php
2 // Copyright (C) 2011 Cassian LUP <cassi.lup@gmail.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 require_once("verify_session.php");
11 $sql = "SELECT * FROM lists WHERE pid = ? AND type = 'medical_problem' ORDER BY begdate";
13 $res = sqlStatement($sql, array($pid));
15 if (sqlNumRows($res)>0) {
17 <table class="class1">
18 <tr class="header">
19 <th><?php echo htmlspecialchars(xl('Title'), ENT_NOQUOTES);?></th>
20 <th><?php echo htmlspecialchars(xl('Reported Date'), ENT_NOQUOTES);?></th>
21 <th><?php echo htmlspecialchars(xl('Start Date'), ENT_NOQUOTES);?></th>
22 <th><?php echo htmlspecialchars(xl('End Date'), ENT_NOQUOTES);?></th>
23 </tr>
24 <?php
25 $even=false;
26 while ($row = sqlFetchArray($res)) {
27 if ($even) {
28 $class="class1_even";
29 $even=false;
30 } else {
31 $class="class1_odd";
32 $even=true;
35 echo "<tr class='".$class."'>";
36 echo "<td>".htmlspecialchars($row['title'], ENT_NOQUOTES)."</td>";
37 echo "<td>".htmlspecialchars($row['date'], ENT_NOQUOTES)."</td>";
38 echo "<td>".htmlspecialchars($row['begdate'], ENT_NOQUOTES)."</td>";
39 echo "<td>".htmlspecialchars($row['enddate'], ENT_NOQUOTES)."</td>";
40 echo "</tr>";
43 echo "</table>";
44 } else {
45 echo htmlspecialchars(xl("No Results"), ENT_NOQUOTES);