Viewing file: v_report002_search.php (4.2 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<table width="100%">
<tr>
<td align="center"><span class="h error">รายงานแสดงที่อยู่ที่ติดต่อได้ของศิษย์เก่า แยกตามหลักสูตร</span></td>
</tr>
<tr>
<td><br /></td>
</tr>
<tr>
<td><table class="szone"><?php echo form_open($this->config->item("ea_folder")."report/report002_ex", array("name" => "myform", "id" => "myform"));?>
<tr bgcolor="<?php echo $this->config->item('tr_c_even');?>">
<td class="coltd_szone2">หลักสูตรตามระบบทะเบียนศิษย์เก่า</td>
<td>
<?php
echo form_dropdown('programAlumniId', $rs_pa, set_value('programAlumniId'));
?>
<span class="error"> *<?php echo form_error('programAlumniId');?></span></td>
</tr>
<tr bgcolor="<?php echo $this->config->item('tr_c_even');?>">
<td class="coltd_szone2">ปีการศึกษาที่จบ</td>
<td><input type="text" name="graduateY" id="graduateY" value="<?php echo isset($acY) ? set_value('graduateY',$acY) : set_value('graduateY');?>" class="required-int" size="5" maxlength="4" />
<span class="error"> *<?php echo form_error('graduateY');?></span></td>
</tr>
<tr bgcolor="<?php echo $this->config->item('tr_c_even');?>">
<td class="coltd_szone2">แสดงรายการ</td>
<td>
<?php
$fieldNames_settings = array(
array ('homeAddr', 'ที่อยู่ศิษย์เก่า (ตามภูมิลำเนา)'),
array ('currentAddr','ที่อยู่ศิษย์เก่า (ปัจจุบัน)'),
array ('workAddr','ที่อยู่ที่ทำงานของศิษย์เก่า'));
$k = 0;
foreach ($fieldNames_settings as $fieldNames) {
?>
<input type="checkbox" name="fieldNamesArr<?php echo $k;?>" id="fieldNamesArr<?php echo $k;?>" value="<?php echo $fieldNames[0];?>" <?php echo set_value('fieldNamesArr'.$k)!="" ? "checked" : "";?> />
<?php echo $fieldNames[1];?><br />
<?php
$k++;
}
?>
<span class="error"><?php echo isset($errChkbox) ? $errChkbox : "";?></span></td>
</tr>
<tr bgcolor="<?php echo $this->config->item('tr_c_even');?>">
<td colspan="2" align="center">
<input type="submit" name="search" id="search" value="ค้นหา" />
<input type="hidden" name="cnt" id="cnt" value="<?php echo $k;?>" />
</td>
</tr>
<?php echo form_close();?></table></td>
</tr>
<!-- <tr>
<td><br /></td>
</tr>
<tr>
<td align="right">ส่งออก <img class="hand" title="ส่งออกเป็น excel" src="<?php echo base_url().$this->config->item('rg_excel_exp');?>" align="absmiddle" border="0" onClick="sendPost('hidform',
{'programAlumniId':<?php echo isset($programAlumniId) ? $programAlumniId : "0";?>,
'graduateYear':<?php echo isset($graduateYear) ? $graduateYear : "0";?>},
'<?php echo site_url($this->config->item('ea_folder').'report/report002_ex');?>')" />
</td>
</tr>
<tr>
<td><table class="headCol">
<tr bgcolor="<?php echo $this->config->item('table_c_even');?>">
<th class="seqCol">ลำดับที่</th>
<th class="stdCodeCol">รหัสนักศึกษา</th>
<th>ชื่อ - นามสกุลศิษย์เก่า</th>
</tr> -->
<?php
// $i = 0;
// if(isset($rs_am) && $rs_am->num_rows()) {
// foreach($rs_am->result() as $row_am) {
// echo "<tr onmouseover=\"bgColor='".$this->config->item('tr_c_even')."'\" onmouseout=\"bgColor='".$this->config->item("rg_mouseout")."'\">";
?>
<!-- <td align="center"><?php echo $i+1;?></td>
<td align="center"><?php echo $row_am->studentCode;?></td>
<td class="indent"><?php echo $row_am->prefixName.$row_am->studentName.' '.$row_am->studentSurname;?></td>
</tr>
--><?php
// $i++;
// }
// } else {
?>
<!-- <tr>
<td colspan="3" align="center"><span class="error">** ไม่ปรากฏรายการในฐานข้อมูล **</span></td>
</tr>
--><?php
// }
?>
<!-- </table></td>
</tr>
<tr>
<td align="right">รวม <?php echo $i;?> รายการ</td>
</tr>
--></table>
|