file permission changes for windows cvs snapshot
[openemr.git] / interface / batchcom / batchPhoneList.php
blob835c9da9fea6aa02ecf9dabdd6cf10b53ad608ae
1 <?php
2 /*
3 batch list processor, included from batchcom
4 */
6 // create a list for phone calls
7 // menu for fields could be added in the future
9 ?>
10 <html>
11 <head>
12 <?php html_header_show();?>
13 <link rel="stylesheet" href="<?echo $css_header;?>" type="text/css">
14 <link rel="stylesheet" href="batchcom.css" type="text/css">
15 </head>
16 <body class="body_top">
17 <span class="title"><?php xl('Batch Communication Tool','e')?></span>
18 <br><br>
20 <?php
22 echo ("<table>"); //will do css
24 echo ("<tr><td>".xl('Name') ."</td>");
25 echo ("<td>".xl('DOB') ."</td>");
26 echo ("<td>".xl('Home')."</td>");
27 echo ("<td>".xl('Work') ."</td>");
28 echo ("<td>".xl('Contact') ."</td>");
29 echo ("<td>".$Cell."</td></tr>\n");
32 while ($row=sqlFetchArray($res)) {
34 echo ("<tr><td>${row['title']} ");
35 echo ("${row['fname']} ");
36 echo ("${row['lname']} </td>");
37 echo ("<td>${row['DOB']} </td>");
38 echo ("<td>${row['phone_home']} </td>");
39 echo ("<td>${row['phone_biz']} </td>");
40 echo ("<td>${row['phone_contact']} </td>");
41 echo ("<td>${row['phone_cell']} </td></tr>\n");
44 echo ("</table>");