Viewing file: compareprogram.php (4.8 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once "template.php";
showHeader();
include_once "../global1.php";
include_once "../../class/clsConnection.php";
include_once "../../class/clsDB.php";
include_once("../class/clsProgram.php");
$oC1 = new clsConnection($GLOBALS["HOST_ER"],$GLOBALS["DBNAME_ER"],$GLOBALS["USERNAME_ER"],$GLOBALS["PASSWORD_ER"]);
$oPgR = new Program($oC1);
include_once "../link/function.php";
include_once "../class/clsConnection.php";
include_once "../class/clsprogramalumni.php";
confirmSubmit();
$oC = new Connection();
$oPg = new Programalumni($oC->c);
/*$oDp2 = new Department($oC->c);
$oDp3 = new Department($oC->c);
$oDp4 = new Department($oC->c);
$oDp5 = new Department($oC->c);
if($xv==1)
{
//$maxDate = $oDp->MaxDate();
$oDp->RSDepartmentMaxDate($oDp->MaxDate());
while($oDp->GetRecord())
{
$oDp2->AddNew();
$oDp2->deptId=$oDp2->GetNextCode();
$oDp2->deptName=$oDp->deptName;
$oDp2->deptDesc=$oDp->deptDesc;
$oDp2->deptCode=$oDp->deptCode;
$oDp2->deptParent='1';
$oDp2->deptYear=$deptYear;
$oDp2->deptDate=$deptDate;
$oDp2->deptRef=$oDp->deptId;
$oDp2->pbriId=$pbriId
$oDp2->deptflag=$deptflag;
$oDp2->Save();
}
}*/
?>
<script language="JavaScript1.2">
function checkAction(){
document.ps.action="processdept.php";
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=TIS-620">
<table width="740" border="0" align="center" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr>
<td><br><fieldset>
<legend><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_3"]; ?>"><a href="menubasicdata.php?mm=1">ข้อมูลพื้นฐานของระบบ</a>
<img src="../picture/ico3.gif" align="absmiddle" border="0">กำหนดหลักสูตรจากระบบทะเบียนให้สัมพันธ์กับหลักสูตรในระบบศิษย์เก่า</font></legend>
<label><div align="center"><form name="ps" method="post" action="processdept.php";><br><table width="740" align="center" border="0" cellpadding="0" cellspacing="1">
<tr>
<td align="center"><font size="3" color="<?php echo $GLOBALS['COLOR_FONT_3'];?>"><strong>กำหนดหลักสูตรจากระบบทะเบียนให้สัมพันธ์กับหลักสูตรในระบบศิษย์เก่า</strong></font></td>
</tr>
<tr >
<td height="20" align="center"> </td>
</tr>
<tr>
<td align="center"><table width="740" border="1" cellspacing="0" cellpadding="0" bordercolor="<?php echo $GLOBALS["COLOR_BORDER_TABLE_1"];?>">
<tr>
<td colspan="6" align="center"> </td>
</tr>
<tr bgcolor="<?php echo $GLOBALS["COLOR_BG_TABLE_1"];?>">
<td height="22" align="center" colspan="5"><strong><font color="<?php echo $GLOBALS["COLOR_FONT_4"];?>" size="2">หลักสูตรจากระบบทะเบียนสัมพันธ์กับหลักสูตรในระบบศิษย์เก่า</font></strong></td>
</tr>
<tr bgcolor="<?php echo $GLOBALS["COLOR_BG_TABLE_2"];?>">
<td width="35" height="22" align="center"><strong><font color="<?php echo $GLOBALS["COLOR_FONT_1"];?>" size="2">ลำดับ</font></strong></td>
<td height="22" align="center"><strong><font color="<?php echo $GLOBALS["COLOR_FONT_1"];?>" size="2">หลักสูตรจากระบบทะเบียน</font></strong></td>
<td height="22" align="center"><strong><font color="<?php echo $GLOBALS["COLOR_FONT_1"];?>" size="2">หลักสูตรในระบบศิษย์เก่า</font></strong></td>
</tr>
<?
$oPgR->RSProgram();
while($oPgR->GetRecord())
{
if(($i%2) == 0)
echo "<tr>";
else
echo "<tr bgcolor=\"".$GLOBALS["COLOR_BG_TABLE_3"]."\">";
?>
<tr>
<td align="center"><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_4"];?>"><?php echo $i+1; ?></font></td>
<td align="left"><? echo $oPgR->programName; ?></td>
<td align="left"><? echo $oPg->selectHTML("programId",$programId);?></td>
</tr>
<?
$i++;
}
?>
<input type="hidden" name="method" value="<? echo $method;?>">
</table></td>
</tr>
<tr>
<td align="center"> </td>
</tr>
<tr>
<td align="center"><input type="button" name="add" value="บันทึกข้อมูล" onClick="return validate()"></td>
</tr>
</table>
</form>
</div></label>
</fieldset><br><table width="93%" align="left" border="0" cellpadding="0" cellspacing="0" bordercolor="<?php echo $GLOBALS["COLOR_BORDER_TABLE_1"];?>">
<tr>
<td height="20" align="left" > <font size="2" color="<?php echo $GLOBALS["COLOR_FONT_3"];?>"><b>หมายเหตุ : </b>* หมายถึง ต้องกรอกข้อมูลให้สมบูรณ์</font></tr>
</table></td>
</tr>
</table>
<?php
showFooter();
$oC->Disconnect();
$oDp->Close();
?>
|