|
|
|
update ตารางอัตโนมัติ เมื่อคลิกลิ้งค์อ่านต่อ เพื่อแสดงสถานะอ่านแล้ว |
|
|
|
|
|
|
|
Code (view2.php)
$sql = " update table set status = 'Y' and view = view + 1 where id= ".$_GET["id"]."'' ";
mysql_query($sql);
|
|
|
|
|
Date :
2012-11-19 17:32:31 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังงง อยู่ครับ
นี่เป็น code view.php
Code (PHP)
<?
session_start();
if ($_SESSION[sess_userid]<>session_id()) {
header( "Location: admin.php"); exit();
}
//include "function.php";
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<style type="text/css">
<!--
.center {
text-align: center;
}
body {
background-color: #CCC;
}
.www {
color: #FFF;
}
body,td,th {
color: #003;
}
.www {
color: #000;
}
-->
</style>
<title>ระบบแจ้ง สนใจเช่าพื้นที่</title><body text="#FF0000" link="#FF0000" vlink="#FF0000" alink="#FF0000">
<font face="MS Sans Serif" size="2"> </font>
<table width="950" border="1" align="center" cellspacing="0" cellpadding="0" height="23">
<tr>
<td width="4%" bgcolor="#00CCFF">
<div align="center">ลำดับ</div>
</td>
<td width="26%" bgcolor="#00CCFF">
<div align="center">ประเภทข้อร้องเรียน</div>
</td>
<td width="16%" bgcolor="#00CCFF">
<div align="center">วันที่</div>
</td>
<td width="16%" bgcolor="#00CCFF">
<div align="center">ชื่อ</div>
</td>
<td width="20%" bgcolor="#00CCFF">
<div align="center">นามสกุล</div>
</td>
<td width="9%" bgcolor="#00CCFF" class="center">สถานะ</td>
<td width="9%" bgcolor="#00CCFF" class="center">ดูข้อมูล</td>
</tr>
</table>
<font face="MS Sans Serif" size="2">
<?
include("connect.php");
mysql_query("SET NAMES TIS620");
mysql_connect( $host,$user,$pw) or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db($dbname) or die("เลือกฐานข้อมูลไม่ได้");
$sql = "select * from suggest ";
/* ตั้งค่า แสดงผลต่อหน้า $Per_Page */
$Per_Page =10;
if(!$Page)
$Page=1;
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$result = mysql_query($sql);
$Page_start = ($Per_Page*$Page)-$Per_Page;
$Num_Rows = mysql_num_rows($result);
if($Num_Rows<=$Per_Page)
$Num_Pages =1;
else if(($Num_Rows % $Per_Page)==0)
$Num_Pages =($Num_Rows/$Per_Page) ;
else
$Num_Pages =($Num_Rows/$Per_Page) +1;
$Num_Pages = (int)$Num_Pages;
if(($Page>$Num_Pages) || ($Page<0))
print "<center><b>จำนวน $Page มากกว่า $Num_Pages ยังไม่มีข้อความ<b></center>";
$sql .= " Where 1 Order by id asc LIMIT $Page_start , $Per_Page";
//ส่วนแสดงผล
$result = mysql_query($sql);
While($row= mysql_fetch_array ($result)){
$id = $row["id"];
$type = $row["type"];
$date_new = $row["date_new"];
$name= $row["name"];
$lastname=$row["lastname"];
$read = $row["read"];
?>
</font>
<table width="950" border="1" align="center" cellspacing="0" cellpadding="0" height="23">
<tr>
<td width="4%" bgcolor="#FFFFFF">
<div align="center">
<?= $id;?>
</div>
</td>
<td width="26%" bgcolor="#FFFFFF"><div align="center">
<?= $type;?>
</div></td>
<td width="16%" bgcolor="#FFFFFF"><div align="center">
<?= $date_new;?>
</div></td>
<td width="16%" bgcolor="#FFFFFF"><div align="center">
<?= $name;?>
</div></td>
<td width="20%" bgcolor="#FFFFFF"><div align="center">
<?= $lastname;?>
</div></td>
<td width="9%" bgcolor="#FFFFFF"><div align="center">
<?php
if ($read==1 )
{
echo "<img src='2.gif'>";
}
else
{
echo "<img src='1.gif'>";}
?>
</div></td>
<td width="9%" bgcolor="#FFFFFF"><div align="center"><a href="view2.php?id=<? echo"$id"; ?>">View</a></div>
</td>
</tr>
</table>
<?}?>
<div align="center"><br>
<span class="www">มีจำนวน Recored ทั้งหมด
<?= $Num_Rows;?>
รวมทั้งหมด : <b>
<?=$Num_Pages;?>
</b> หน้า :
<? /* สร้างปุ่มย้อนกลับ */
if($Prev_Page)
echo " <a href='$PHP_SELF?Page=$Prev_Page'><< ย้อนกลับ </a>";
for($i=1; $i<$Num_Pages; $i++){
if($i != $Page)
echo "[<a href='$PHP_SELF?Page=$i'>$i</a>]";
else
echo "<b> $i </b>";
}
/*สร้างปุ่มเดินหน้า */
if($Page!=$Num_Pages)
echo "<a href ='$PHP_SELF?Page=$Next_Page'> หน้าถัดไป>> </a>";
?>
</span></div>
<p><a href="logout.php">Logout>></a></p>
</body>
</html>
|
|
|
|
|
Date :
2012-11-19 18:36:25 |
By :
ราชาโจรสลัด |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ส่วนนี่ view2.php
Code (PHP)
<?
session_start();
if ($_SESSION[sess_userid]<>session_id()) {
header( "Location: admin.php"); exit();
}
?>
<?
$id=$_GET[id];
include "connect.php";
mysql_query("SET NAMES TIS620");
$sql="select * from suggest where id='$id' ";
$result=mysql_db_query($dbname,$sql);
$rs=mysql_fetch_array($result);
$id=$rs[id];
$type=$rs[type];
$zone=$rs[zone];
$other=$rs[other];
$date=$rs[date];
$time=$rs[time];
$title=$rs[title];
$name=$rs[name];
$lastname=$rs[lastname];
$age=$rs[age];
$email=$rs[email];
$tel=$rs[tel];
$message=$rs[message];
$date_new=$rs[date_new];
$time_new=$rs[time_new];
?>
<HTML>
<HEAD><TITLE>แนะนำบริการ (Sharing Your Suggestion) </TITLE><meta http-equiv="Content-Type" content="text/html; charset=windows-874">
<style type="text/css">
<!--
.bold {
font-weight: bold;
}
body {
background-color: #CCC;
}
body,td,th {
color: #000;
}
.font { font-style: normal;
font-weight: normal;
font-family: sans-serif, serif;
font-size: small;
}
-->
</style>
</HEAD>
<BODY text="#000000" link="#FFFFFF" vlink="#FF0000" alink="#FF0000">
<TABLE width="80%">
<TR>
<TD colspan="3" bgcolor="#FFFFFF" class="bold"><H4>แนะนำบริการ (Sharing Your Suggestion) ศูนย์การค้าฟอร์จูนทาวน์ โดยคุณ <? echo "$name"; ?> <? echo "$name"; ?></H4></TD>
</TR>
<TR>
<TD colspan="2" bgcolor="#FFFFFF" class="bold">ข้อมูล</TD>
<TD bgcolor="#FFFFFF"> </TD>
</TR>
<TR>
<TD width="20" bgcolor="#FFFFFF" class="bold"> </TD>
<TD width="184" bgcolor="#FFFFFF">ประเภทความคิดเห็น</TD>
<TD bgcolor="#FFFFFF"><? echo "$type";
?></TD>
</TR>
<TR>
<TD bgcolor="#FFFFFF" class="bold"> </TD>
<TD bgcolor="#FFFFFF">โซนพื้นที่รับบริการ</TD>
<TD bgcolor="#FFFFFF"><? echo "$zone";
?>
</TD>
</TR>
<TR>
<TD bgcolor="#FFFFFF" class="bold"> </TD>
<TD bgcolor="#FFFFFF">วันที่เข้ารับบริการ</TD>
<TD bgcolor="#FFFFFF"><? echo "$date";
?></TD>
</TR>
<TR>
<TD bgcolor="#FFFFFF" class="bold"> </TD>
<TD bgcolor="#FFFFFF">คำนำหน้าชื่อ</TD>
<TD bgcolor="#FFFFFF"><? echo "$title";
?></TD>
</TR>
<TR bgcolor="#CCCCCC">
<TD bgcolor="#FFFFFF" class="bold"> </TD>
<TD bgcolor="#FFFFFF">ชื่อ</TD>
<TD bgcolor="#FFFFFF"><? echo "$name";
?></TD>
</TR>
<TR>
<TD bgcolor="#FFFFFF" class="bold"> </TD>
<TD bgcolor="#FFFFFF">นามสกุล</TD>
<TD bgcolor="#FFFFFF"><? echo "$lastname"; ?></TD>
</TR>
<TR>
<TD bgcolor="#FFFFFF" class="bold"> </TD>
<TD bgcolor="#FFFFFF">อายุ</TD>
<TD bgcolor="#FFFFFF"><? echo "$age"; ?></TD>
</TR>
<TR>
<TD bgcolor="#FFFFFF" class="bold"> </TD>
<TD bgcolor="#FFFFFF">อีเมลล์</TD>
<TD bgcolor="#FFFFFF"><? echo "$email"; ?></TD>
</TR>
<TR>
<TD bgcolor="#FFFFFF" class="bold"> </TD>
<TD bgcolor="#FFFFFF">เบอร์โทรศัพท์</TD>
<TD bgcolor="#FFFFFF"><? echo "$tel";
?></TD>
</TR>
<TR>
<TD bgcolor="#FFFFFF" class="bold"> </TD>
<TD bgcolor="#FFFFFF">ข้อความ</TD>
<TD rowspan="3" bgcolor="#FFFFFF"><? echo "$message";
?></TD>
</TR>
<TR>
<TD bgcolor="#FFFFFF" class="bold"> </TD>
<TD bgcolor="#FFFFFF"> </TD>
</TR>
<TR>
<TD bgcolor="#FFFFFF" class="bold"> </TD>
<TD bgcolor="#FFFFFF"> </TD>
</TR>
<TR>
<TD VALIGN="top" bgcolor="#FFFFFF" class="bold"> </TD>
<TD VALIGN="top" bgcolor="#FFFFFF">วันที่กรอกข้อมูล</TD>
<TD bgcolor="#FFFFFF"><? echo "$date_new"; ?> : <? echo "$time_new"; ?></TD>
</TR>
<TR>
<TD colspan="2" VALIGN="top" bgcolor="#FFFFFF" class="bold"> </TD>
<TD bgcolor="#FFFFFF"> </TD>
</TR>
</TABLE>
<A HREF="views.php"> << Back </A> <a href="logout.php">Logout>></a>
</BODY>
</HTML>
|
|
|
|
|
Date :
2012-11-19 18:37:32 |
By :
ราชาโจรสลัด |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จะไห้เพิ่ม
Code (PHP)
$sql = " update table set status = 'Y' and view = view + 1 where id= ".$_GET["id"]."'' ";
mysql_query($sql);
ตรงไหนครับ
|
|
|
|
|
Date :
2012-11-19 18:38:41 |
By :
ราชาโจรสลัด |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ในไฟล์ view2.php ครับ ก็แค่แทรกคำสั่ง update ข้อมูลแค่นั้นครับ
|
|
|
|
|
Date :
2012-11-20 08:51:11 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ประมาณนั้นครับ
|
|
|
|
|
Date :
2012-11-21 12:07:12 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|