3 batch list processor, included from batchcom
6 // create a list for phone calls
7 // menu for fields could be added in the future
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">
16 <body
class="body_top">
17 <span
class="title"><?php
xl('Batch Communication Tool','e')?
></span
>
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");