|
|
|
พี่ค่ะ สอบถามปัญหาปฎิทินค่ะ ทำไมพอ include ไฟล์อื่นเข้ามาแล้ว ปฎิทินไม่โชว์ค่ะ |
|
|
|
|
|
|
|
ไม่รุทำไมก่อนหน้านี้ยังดีๆอยู่ แต่พอ include ไฟล์ show_income.php อื่นเข้ามา ปฎิทินก้อใช้งานไม่ได้ซะงั้น
ไฟล์แรก
<?php
session_start();
if($_SESSION['Mem_ID'] == "")
{
echo "Please Login!";
echo sss.$_SESSION['Mem_ID'];
exit();
}
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("household");
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
?>
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/smoothness/jquery-ui-1.7.2.custom.css">
<link rel="stylesheet" type="text/css" href="css/css.css">
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.7.2.custom.min.js"></script>
<script type="text/javascript">
$(function(){
// แทรกโค้ต jquery
$("#dateInput").datepicker({ dateFormat: 'yy-mm-dd' });
});
</script>
<style type="text/css">
.ui-datepicker{
width:150px;
font-family:tahoma;
font-size:11px;
text-align:center;
}
</style>
<body>
<?
//*** Add Condition ***//
if($_POST["hdnCmd"] == "Add")
{
$strSQL = "INSERT INTO income ";
$strSQL .="(Inc_Type_ID,Mem_ID,Inc_Amount,Inc_Date,Inc_Note) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["Inc_Type_ID1"]."','".$_SESSION['Mem_ID']."' ";
$strSQL .=",'".$_POST["Inc_Amount1"]."' ";
$strSQL .=",'".$_POST["dateInput1"]."','".$_POST["Inc_Note1"]."') ";
$objQuery = mysql_query($strSQL);
if(!$objQuery)
{
echo "Error Save [".mysql_error()."]";
}
//header("location:$_SERVER[PHP_SELF]");
//exit();
}
?>
<fieldset>
<legend align="center"> รายรับ </legend>
<form name="frmMain" method="post" action="<?=$_SERVER["PHP_SELF"];?>">
<p align="center"><? include("sum_amount.php");echo "<br>"?>
<p align="center"><input type="hidden" name="hdnCmd" value="">
<? $strSQL = "SELECT * FROM income_type";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");?>
<table width="353" border="0">
<tr>
<td width="137" align="right">กรุณาเลือกประเภท</td>
<td width="206"><select name="Inc_Type_ID1" id="Inc_Type_ID2">
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<option value="<?=$objResult["Inc_Type_ID"];?>">
<?=$objResult["Inc_Type_Name"];?>
</option>
<?
}
?>
</select></td>
</tr>
<tr>
<td align="right">กรุณาป้อนจำนวนเงิน</td>
<td><input type="text" name="Inc_Amount1" size="20">
บาท</td>
</tr>
<tr>
<td align="right">วันที่</td>
<td><input type="text" name="dateInput" id="dateInput" value="<?php echo date('Y-m-d') ?>"></td>
</tr>
<tr>
<td align="right">หมายเหตุ</td>
<td><input type="text" name="Inc_Note1" size="20"></td>
</tr>
<tr>
<td> </td>
<td><input name="btnAdd2" type="button" id="btnAdd" value="บันทึก" onClick="frmMain.hdnCmd.value='Add';frmMain.submit();">
</td>
</tr></table>
<p> </p>
</form>
<? include("show_income.php");?>
</p>
<p><a href="index_user.php">กลับ</a></p>
</fieldset>
</body>
</html>
show_income.php
<?php
session_start();
if($_SESSION['Mem_ID'] == "")
{
echo "Please Login!";
echo sss.$_SESSION['Mem_ID'];
exit();
}
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("household");
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
$strSQL = "SELECT * FROM income WHERE Mem_ID LIKE '".$_SESSION['Mem_ID']."' AND (Inc_Date BETWEEN '".$_SESSION["date_start"]."' AND '".$_SESSION["datestop"]."') ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
<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' : '50%',
'autoScale' : false,
'transitionIn' : 'none',
'transitionOut' : 'none',
'type' : 'iframe',
onClosed : function() {
parent.location.reload(true);
}
});
$('a[id^="delete"]').fancybox({
'width' : '20%',
'height' : '20%',
onStart : function() {
return window.confirm('Do you want to delete?');
},
onClosed : function() {
parent.location.reload(true);
}
});
});
</script>
</head>
<body>
<fieldset>
<legend align="center"> รายรับ </legend>
<p><a id="edit" class="various iframe" href="long8_8.php"><img src="img/y.png" width="122" height="42"></a></p>
<table width="545" border="1" align="center">
<tr>
<td width="87" align="center">ประเภท</td>
<td width="75" align="center">รายจ่าย</td>
<td width="131" align="center">หมายเหตุ</td>
<td width="128" align="center">วันที่</td>
<td width="41" align="center">แก้ไข</td>
<td width="43" align="center">ลบ</td>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery)){
$strJoin="SELECT income.*,income_type.* FROM income,income_type WHERE income.Inc_Type_ID = income_type.Inc_Type_ID AND income.Inc_Type_ID = '".$objResult["Inc_Type_ID"]."'";
$objQuery1 = mysql_query($strJoin) or die ("Error Query [".$strJoin."]");
$objResult1 = mysql_fetch_array($objQuery1);
?>
<tr>
<td height="34" align="center"><? echo $objResult1['Inc_Type_Name']?></td>
<td align="right"><? echo $objResult['Inc_Amount']?></td>
<td><? echo $objResult['Inc_Note']?></td>
<td align="center"><? echo $objResult['Inc_Date']?></td>
<td width="41" align="center"><a id="edit<?=$i;?>" class="various iframe" href="edit_income.php?Inc_ID=<?=$objResult["Inc_ID"];?>"><img src="img/edit.png" width="30" height="30"></a></td>
<td width="43" align="center"><img src="img/del.png" width="26" height="26"></td>
</tr><? }?>
</table>
<?
mysql_close($objConnect);
?>
</p>
<p><a href="index_user.php">กลับ</a></p>
</fieldset>
</body>
</html>
Tag : PHP, HTML/CSS, JavaScript, Ajax
|
|
|
|
|
|
Date :
2013-05-20 15:31:46 |
By :
nongtoom |
View :
717 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถูกแล้วครับ
แต่ไฟล์ showincome ต้องไปเอาตัวที่ เรียกใช้ Jquery ออกทั้งหมด เพราะมันจะชนกันครับ
ในหน้า หนึ่งหน้า ไม่สามารถ เรียกใช้ Jquery ได้หลายครั้ง เพราะมันจะชนกันและพาลเออเร่อ
|
|
|
|
|
Date :
2013-05-20 16:20:42 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โห้พี่ แล้วต้องทำไงอะค่ะ คือไม่อยากเอาออกเลยอะค่ะ
|
|
|
|
|
Date :
2013-05-21 10:16:11 |
By :
nongtoom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|