Viewing file: DetailOutcomes_old.php (7.86 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
session_start();
/** Define Validate Access */
define( '_VALID_ACCESS', 1 );
/** Check Session User Login */
if( !session_is_registered("valid_user") && !session_is_registered("Priority") ) {
echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-874\" />";
echo "<p style=padding-top:115px><p align=center><br /><font color=red><strong>กรุณาทำการ Login ก่อน</strong></font></p></p>";
echo "<meta http-equiv=\"refresh\" content=\"1; URL=../login.php\" />";
exit();
}
else {
/** Configuration */
include( "../configuration.php" );
require_once( $_Config_absolute_path . "/includes/framework.php" );
require_once( "../includes/Function.php" );
/** Create Database Object */
$dbObj = new DBConn;
/** Config Table for This Page */
$myTable = "course";
$myTable1 = "condition_db";
$myTable2 =" tech_corseplan_tb";
$myTableFK = "courseId ";
/** Paging */
$page = $_GET['page'];
if( $page == "" ) { $page = 1; }
/** จำนวนข้อมูล ต่อ 1 หน้า */
$perpage = $_REQUEST['perpage'];
if( $perpage == "" ) { $perpage = 10; }
$param = "acadYear=$acadYear";
} # else
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title><?=$_Config_sitename;?> - ข้อมูลฝ่ายวิชาการ - รายชื่อหลักสูตร</title>
<script type="text/javascript" src="../js/utilities.js"></script>
<link href="../css/default.css" rel="stylesheet" type="text/css" /></head>
<body topmargin="0" rightmargin="0" bottommargin="0" leftmargin="0">
<table width="1166" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="1066" height="300" align="center" valign="top" style="padding:10px 0px 5px 10px">
<?php
/** Config Paging */
if( $perpage == "" ) { $limit = $_Config_limit; }
else { $limit = $perpage; }
$scroll = $_Config_scroll;
/** ตั้งค่า Default สำหรับการทำ Order By */
if( $OrderBy == "" ) { $OrderBy = $myTableFK; }
if( !isset($_GET['ASCDESC']) ) { $ASCDESC = "ASC"; }
if( $_GET['ASCDESC'] == "ASC" ) { $ASCDESC = "DESC"; }
elseif( $_GET['ASCDESC'] == "DESC" ) { $ASCDESC = "ASC"; }
/** Query เพื่อหา Numrows ก่อน */
$query = " SELECT * FROM $myTable2 Where acadYear ='$acadYear' and programId='$programId' ORDER BY $myTableFK ASC ";
$result = $dbObj->execQuery($query);
$numrows = $dbObj->_numrows;
/** Paging */
$display = ( !isset ($_GET['page']) ) ? 1 : $_GET['page'];
$start = ( ($display * $limit) - $limit );
/** Paging */
if( isset($_GET['OrderBy']) ) {
$query = " SELECT * FROM $myTable2 Where acadYear ='$acadYear' and programId='$programId' ORDER BY $OrderBy $ASCDESC ";
}
elseif( !isset($_GET['OrderBy']) ) {
$query = " SELECT * FROM $myTable2 Where acadYear ='$acadYear' and programId='$programId' ORDER BY $myTableFK ASC ";
}
$query .= " LIMIT $start, $limit ";
$result = $dbObj->execQuery($query);
?>
<fieldset><table width="1156" height="162" border="0" cellpadding="0" cellspacing="0">
<form id="myForm" name="myForm" method="post" action="<?=$PHP_SELF;?>?page=<?=$page;?>&<?=$param;?>">
<tr>
<td width="1133" height="5"></td>
</tr>
<tr>
<td height="19"><img src="../images/icons/arrow-circle-225-left.png" width="16" height="16" border="0" align="absmiddle" /> <a href="javascript:;" onclick="window.history.back();"><strong>‹ ย้อนกลับ</strong></a></span></td>
</tr>
<tr>
<td height="122" align="center" valign="top"><?php if( $numrows > 0 ) { ?>
<table width="1130" border="0" align="center" cellpadding="0" cellspacing="0" class="BORDER-GREY">
<tr bgcolor="#FFFFFF">
<td width="24" align="center">No</td>
<td align="center" class="BORDER-LEFT">รายวิชา (Learning Outcomes)</td>
<?
for($i=1;$i<=6;$i++){
$sql6 = " SELECT * , toc.outcomName as outcomDetail FROM tech_outcom_tb toct , tech_outcom toc where toct.outId = '$i' and toct.programId = '$programId' and toc.outId = toct.outId Order By toct.outNo " ;
$result6= mysql_query($sql6);
$rss6 = mysql_fetch_object($result6);
$numrowsRSS6 = mysql_num_rows($result6);
?>
<td width="70" height="25" align="center" class="PADDING-LEFT-3 BORDER-LEFT" colspan="<?=$numrowsRSS6;?>"><?=$rss6->outcomDetail;?></td>
<? }?>
</tr>
<tr bgcolor="<?=$bgColor;?>" onmouseover="this.style.backgroundColor='#F5F9F9'" onmouseout="this.style.backgroundColor=''">
<td align="center" class="BORDER-TOP"> </td>
<td height="19" align="left" class="PADDING-LEFT-3 BORDER-TOP-LEFT"> </td>
<?
$sql4 =" SELECT * FROM tech_outcom_tb Where programId='$programId' Order By outNo " ;
$result4 = mysql_query($sql4 );
while( $rss4 = mysql_fetch_array($result4) ) {
$bgColor = ( $bgColor == "#FFFFFF" ) ? "#F9FBFB" : "#FFFFFF";
?>
<td align="center" class="PADDING-LEFT-5 PADDING-RIGHT-5 BORDER-TOP-LEFT"><?=$rss4['outNo'] ;?></td>
<?
$i ++ ;
} #while
?>
</tr>
<?php
$no = 1+($display-1)*$limit;
while( $rs = $dbObj->fetchArray($result) ) {
$bgColor = ( $bgColor == "#FFFFFF" ) ? "#F9FBFB" : "#FFFFFF";
$conditionId= $rs['conditionId'];
?>
<tr bgcolor="<?=$bgColor;?>" onmouseover="this.style.backgroundColor='#F5F9F9'" onmouseout="this.style.backgroundColor=''">
<td align="center" class="BORDER-TOP"><?=$no;?></td>
<td width="1034" height="20" align="left" class="PADDING-LEFT-3 BORDER-TOP-LEFT"><a href="CourseMethod.php?courseId=<?=$rs['courseId'] ;?>&acadYear=<?=$rs['acadYear'];?> "><? echo $rs[courseCode]?></a>
<?php
$sql = " SELECT * FROM course WHERE courseId ='$rs[courseId]' " ;
$result3 = $dbObj->execQuery($sql);
$rs3 = $dbObj->fetchArray($result3);
$dbObj->freeresult($result2);
echo $rs3['courseName'];
?>
<? echo $rs3[courseUnit] ?></td>
<?
$sql17 =" SELECT * FROM tech_outcom_tb Where programId='$programId' Order By outNo " ;
$result17 = mysql_query($sql17 );
while( $rss17 = mysql_fetch_array($result17) ) {
$bgColor = ( $bgColor == "#FFFFFF" ) ? "#F9FBFB" : "#FFFFFF";
?>
<td align="center" class="PADDING-LEFT-5 PADDING-RIGHT-5 BORDER-TOP-LEFT">
<?
$sql18 = "select count(*) as numCol from tech_outcom_tb toc , tech_coseoutcom tcoc , tech_methodcom_tb tmc , tech_planmethod tpm where toc.comId = '$rss17[comId]' and toc.comId = tcoc.comId and tcoc.cosId = tmc.cosId and tmc.ttpId = tpm.ttpId and tpm.courseId = '$rs[courseId]' ";
$result18 = mysql_query($sql18);
$rss18 = mysql_fetch_object($result18);
echo $rss18->numCol;
?>
</td>
<? } #while ?>
</tr>
<?
$no++ ;
} #while
?>
</table>
<?php } #if ?></td>
</tr>
<tr>
<td height="16"> </td>
</tr></form>
</table>
</fieldset></td>
</tr>
</table>
</body>
</html>
<?php
/** Free Resource */
$dbObj->freeresult($result);
/** Close the Database */
$dbObj->disconn();
/** Unset Class */
unset($dbObj);
?>
|