|
|
|
พี่ครับ ทำ fancy box ผมไม่เด้งอ่ะครับ แต่มันขึ้นหน้าใหม่มาแทนอ่ะครับ |
|
|
|
|
|
|
|
นี้ครับ code Code (PHP)
<?
include '../t/tem.php';
gh(test);
$dblink = connect_db();
$strsql = "select*from itdiscovery";
$resultsql = mysqli_query($dblink, $strsql);
?>
<script type="text/javascript" src="scripts/jquery-1.4.3.min.js"></script>
<script type="text/javascript" src="fancybox/jquery.mousewheel-3.0.4.pack.js"></script>
<script type="text/javascript" src="fancybox/jquery.fancybox-1.3.4.pack.js"></script>
<link rel="stylesheet" type="text/css" href="fancybox/jquery.fancybox-1.3.4.css" media="screen" />
<link rel="stylesheet" href="style/style.css" />
<script type="text/javascript">
$(document).ready(function() {
$('a[id^="edit"]').fancybox({
'width' : '45%',
'height' : '20%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe',
onClosed : function() {
parent.location.reload(false);
}
});
/* $('a[id^="delete"]').fancybox({
'width' : '20%',
'height' : '20%',
onStart : function() {
return window.confirm('Do you want to delete?');
},
onClosed : function() {
parent.location.reload(true);
}
});
/*
onStart : function() {
return window.confirm('Continue?');
},
onCancel : function() {
alert('Canceled!');
},
onComplete : function() {
alert('Completed!');
},
onCleanup : function() {
return window.confirm('Close?');
},
onClosed : function() {
alert('Closed!');
}
*/
});
</script>
<!-- Page Content -->
<div id="page-wrapper"><br><br>
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">reports</h1>
</div>
<!-- /.col-lg-12 -->
<div class="col-lg-12">
<form name="frmSearch" method="post" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<table width="300" border="0">
<tr>
<th>เลือก ปี
<select name="year" id="year">
<option value=" ">---ปี---</option>
<?PHP for($i=0; $i<=50; $i++) {?>
<option value="<?PHP echo date("Y")-$i?>"><?PHP echo date("Y")-$i+543?></option>
<?PHP }?>
<th><input type="submit" value="ค้นหา"></th>
</th>
</tr>
<?
$y = $_POST[year]+543;
$strsqls = "SELECT * from itdiscovery where years like'%$y%' ";
//echo "$strsqls";
$resultsqls = mysqli_query($dblink, $strsqls);
$numrow = mysqli_num_rows($resultsqls);
$row = mysqli_fetch_array($resultsqls);
?>
</table>
</form>
<?if ($numrow >0) {?>
<h4><strong>ปี: <?= $y?>     </strong></h4>
<div class="col-lg-6">
<table class="table" >
<thead>
<tr>
<th>ชื่อโครงการ</th>
<th>ดูลายละเอียด</th>
</tr>
</thead>
<tbody>
<tr>
<td><?= $row[ITDName];?></td>
<td><a id="edit<?=$i;?>" class="various iframe" href="sit.php?id=<?=$row["id"];?>"><i class="fa fa-search fa-fw"></i></a></td>
</tr>
</tbody>
</table>
<?}else{ /*echo "ไม่มีข้อมูล";*/}?>
</div>
<!-- /.col-lg-6 -->
</div>
<!-- /.col-lg-12 -->
</div>
<!-- /.row -->
</div>
<!-- /.container-fluid -->
</div>
<!-- /#page-wrapper -->
</div>
<!-- /#wrapper -->
<?gf();?>
นี้ code หน้าที่จะให้เด้งอ่ะครับ
Code (PHP)
<?
include '../inc/function.php';
function gh($title){?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title><?= $title;?></title>
<!-- Bootstrap Core CSS -->
<link href="../bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- MetisMenu CSS -->
<link href="../bower_components/metisMenu/dist/metisMenu.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="../dist/css/sb-admin-2.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="../bower_components/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<?
$dblink = connect_db();
$strsqls = "SELECT * from itdiscovery where id ='$id' ";
//echo "$strsqls";
$resultsqls = mysqli_query($dblink, $strsqls);
//$numrow = mysqli_num_rows($resultsqls);
$row = mysqli_fetch_array($resultsqls);
?>
<table class="table">
<tr>
<th>รหัสโครการ</th>
<td><?= $row[ITDID]?></td>
</tr>
<tr>
<th>รหัสโครการ</th>
<td><?= $row[ITDName]?></td>
</tr>
<tr>
<th>สถานะโครงการ</th>
<td><?= $row[ITDStatus]?></td>
</tr>
<tr>
<th>รหัสโปรเจคหลัก</th>
<td><?= $row[programID]?></td>
</tr>
<tr>
<th>หน่วยงาน</th>
<td><?= $row[projectOwner]?></td>
</tr>
<tr>
<th>รหัสแผนยุทธศาสตร์</th>
<td><?= $row[OrganizationStrategyID]?></td>
</tr>
<tr>
<th>ชื่อแผนยุทธศาสตร์</th>
<td><?= $row[OrganizationStrategyName]?></td>
</tr>
<tr>
<th>รหัสแผนแม่บท</th>
<td><?= $row[ITMasterPlanID]?></td>
</tr>
<tr>
<th>ชื่อแผนแม่บท</th>
<td><?= $row[ITMasterPlanName]?></td>
</tr>
<tr>
<th>รหัสแผนงานทางธุรกิจ</th>
<td><?= $row[ITBusinessPlanID]?></td>
</tr>
<tr>
<th>ชื่อแผนงานทางธุรกิจ</th>
<td><?= $row[ITBusinessPlanName]?></td>
</tr>
</table>
<body>
<?}?>
<?function gf(){?>
<!-- jQuery -->
<script src="../bower_components/jquery/dist/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="../bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- Metis Menu Plugin JavaScript -->
<script src="../bower_components/metisMenu/dist/metisMenu.min.js"></script>
<!-- Custom Theme JavaScript -->
<script src="../dist/js/sb-admin-2.js"></script>
</body>
</html>
<?}?>
Tag : PHP
|
|
|
|
|
|
Date :
2016-01-22 09:34:47 |
By :
erlnw001 |
View :
849 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Include พวก Library ครบไหม๊ครับ อันดับแรกให้เช็คตัวนี้ก่อนเลย
|
|
|
|
|
Date :
2016-01-22 11:54:54 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ครบ น่ะครับ เพราะ copy ของพี่วินมาอ่ะครับ หรือเป็นเพราะ bootstrap หรือป้าวครับพี่
|
|
|
|
|
Date :
2016-01-22 12:28:10 |
By :
erlnw001 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดู Version ของ jQuery ด้วยนะครับ หรือไม่ก็อาจจะต้องไปดาวน์โหฃดตัว Fancybox ที่เป็นเวอร์ชั่นใหม่ครับ
|
|
|
|
|
Date :
2016-01-22 13:13:46 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ๋อ ครับบ พี่
|
|
|
|
|
Date :
2016-01-22 13:31:20 |
By :
erlnw001 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|