พี่ๆช่วยทีครับ ผมจะเอาข้อมูล 2 ตาราง มาใช้ร่วมกันครับ
เวลา SELECT ก็ลองใช้ WHERE id=$id ของ username ดูสิครับ ถ้ายังไงเอา code มาแปะแล้วจะมาดูใหม่นะครับ
Date :
2011-02-06 13:16:01
By :
THENBA1
นี่ครับโค๊ด
home.php
Quote: <?php require_once('Connections/CDG.php'); ?>
<?
session_start();
$_SESSION["Contact_ID"] = $row_service["id"];
?>
<?php echo $row_service['Username'];?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$maxRows_service = 10;
$pageNum_service = 0;
if (isset($_GET['pageNum_service'])) {
$pageNum_service = $_GET['pageNum_service'];
}
$startRow_service = $pageNum_service * $maxRows_service;
mysql_select_db($database_CDG, $CDG);
$query_service = "SELECT * FROM cdg_service";
$query_limit_service = sprintf("%s LIMIT %d, %d", $query_service, $startRow_service, $maxRows_service);
$service = mysql_query($query_limit_service, $CDG) or die(mysql_error());
$row_service = mysql_fetch_assoc($service);
if (isset($_GET['totalRows_service'])) {
$totalRows_service = $_GET['totalRows_service'];
} else {
$all_service = mysql_query($query_service);
$totalRows_service = mysql_num_rows($all_service);
}
$totalPages_service = ceil($totalRows_service/$maxRows_service)-1;
mysql_select_db($database_CDG, $CDG);
$query_DB_CDG = "SELECT * FROM account";
$DB_CDG = mysql_query($query_DB_CDG, $CDG) or die(mysql_error());
$row_DB_CDG = mysql_fetch_assoc($DB_CDG);
$totalRows_DB_CDG = mysql_num_rows($DB_CDG);
?>
<?php echo $_SESSION['MM_Username']; ?>
<?
ob_start();
//============ Start Session และทำการเรียก Function ติดต่อฐานข้อมูล
session_start();
require_once('Connections/CDG.php'); ?>
<?php echo "<a href=service.php?Usernamehff
=".$_SESSION['MM_Username'].">แจ้งปัญหา</a>"; ?>
<!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=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<p><?php echo $row_service['Date']; ?> <?php echo $row_service['Username']; ?>
</p>
<p> </p>
<p>รายละเอียดที่เคยได้แจ้งไปแล้ว</p>
<table width="1572" border="1">
<tr>
<td width="110">วันที่</td>
<td width="111">เวลา</td>
<td width="142">รหัสพนักงาน</td>
<td width="120">แผนก</td>
<td width="146">ชื่อ</td>
<td width="129">ชื่ออุปกรณ์ที่เสีย</td>
<td width="107">รหัสซีเรียลเครื่อง</td>
<td width="127">อาการ</td>
<td width="132">Satisfied</td>
<td width="117">ตัวแทนฝ่ายบริการ</td>
<td width="115">สถานะใบแจ้ง</td>
<td width="140">เวลาที่ serviceเสร็จสิ้น</td>
</tr>
<?php do { ?>
<tr>
<td height="23"><?php echo $row_service['Date']; ?></td>
<td><?php echo $row_service['Time']; ?></td>
<td><?php echo $row_service['Username']; ?></td>
<td><?php echo $row_service['Group']; ?></td>
<td><?php echo $row_service['Name_TH']; ?></td>
<td><?php echo $row_service['Product']; ?></td>
<td><?php echo $row_service['Serial No.']; ?></td>
<td><?php echo $row_service['Subject']; ?></td>
<td><?php echo $row_service['Satisfied']; ?></td>
<td><?php echo $row_service['Service Reprsentative']; ?></td>
<td><?php echo $row_service['status']; ?></td>
<td><?php echo $row_service['time_finish']; ?></td>
</tr>
<?php } while ($row_service = mysql_fetch_assoc($service)); ?>
</table>
<p> </p>
</body>
</html>
<?php
mysql_free_result($service);
mysql_free_result($DB_CDG);
?>
login.php
Quote: <?php require_once('Connections/CDG.php'); ?>
<?
session_start();
$_SESSION["Contace_ID"] = $_POST["Contace_ID"];
?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
?>
<?php
// *** Validate request to login to this site.
if (!isset($_SESSION)) {
session_start();
}
$loginFormAction = $_SERVER['PHP_SELF'];
if (isset($_GET['accesscheck'])) {
$_SESSION['PrevUrl'] = $_GET['accesscheck'];
}
if (isset($_POST['Username'])) {
$loginUsername=$_POST['Username'];
$password=$_POST['Password'];
$MM_fldUserAuthorization = "";
$MM_redirectLoginSuccess = "home.php";
$MM_redirectLoginFailed = "index.php";
$MM_redirecttoReferrer = true;
mysql_select_db($database_CDG, $CDG);
$LoginRS__query=sprintf("SELECT Username, Password FROM account WHERE Username=%s AND Password=%s",
GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));
$LoginRS = mysql_query($LoginRS__query, $CDG) or die(mysql_error());
$loginFoundUser = mysql_num_rows($LoginRS);
if ($loginFoundUser) {
$loginStrGroup = "";
if (PHP_VERSION >= 5.1) {session_regenerate_id(true);} else {session_regenerate_id();}
//declare two session variables and assign them
$_SESSION['MM_Username'] = $loginUsername;
$_SESSION['MM_UserGroup'] = $loginStrGroup;
if (isset($_SESSION['PrevUrl']) && true) {
$MM_redirectLoginSuccess = $_SESSION['PrevUrl'];
}
header("Location: " . $MM_redirectLoginSuccess );
}
else {
header("Location: ". $MM_redirectLoginFailed );
}
}
?>
<!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=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<form id="form1" name="form1" method="POST" action="<?php echo $loginFormAction; ?>">
<label>
<input type="text" name="Username" id="Username" />
<br />
</label>
<label>
<input name="Password" type="password" id="Password" size="21" />
<br />
</label>
<input type="image" name="login" id="login" src="item/button2.png" />
</form>
</body>
</html>
พอดีผมไม่เก่งเรื่อง Code เท่าไหร่จึงใช้ โปรแกรมช่วยหน่ะครับ DW
ตอนนี้ก็ศึกษาเรื่องโค๊ดเพิ่มเติมครับ
หรือ ต้องสร้างตัว connect อีกตัวให้กับตารางครับง
ขอบคุณครับพี่ๆ
ประวัติการแก้ไข 2011-02-07 07:58:55 2011-02-07 08:00:57 2011-02-07 08:02:35
Date :
2011-02-07 07:58:17
By :
makoto12
Select * from ตารางที่1 as A inner join ตารางที่2 As B On A.Contact_ID = B.id
Date :
2011-02-07 12:53:23
By :
compeng
ขอบคุณครับแต่ มันไม่ได้ครับ มันทำให้โค๊ด ตัวนี้
$maxRows_service = 10;
$pageNum_service = 0;
if (isset($_GET['pageNum_service']))
error ครับ
งง~~;
ลบโค๊ดตัวนี้เสร็จแล้วก็ไม่error แต่ ก็ไม่เกิดไรขึ้นครับ ตารางก็มาหมดทุก id เหมือนเดิม ครับ
Date :
2011-02-08 01:26:23
By :
makoto12
ได้แล้วครับแต่ มัน เป็นแบบนี้ครับ
วันที่ เวลา
คุณ สมชาย ได้แจ้งservice 5-2-2011 14.23 น.
คุณ สมชาย ได้แจ้งservice 5-2-2011 14.23 น.
คุณ สมชาย ได้แจ้งservice 5-2-2011 14.23 น.
คุณ สมชาย ได้แจ้งservice 5-2-2011 14.23 น.
คุณ สมชาย ได้แจ้งservice 5-2-2011 14.23 น.
คุณ สมชาย ได้แจ้งservice 5-2-2011 14.23 น.
คุณ สมชาย ได้แจ้งservice 5-2-2011 14.23 น.
คุณ สมชาย ได้แจ้งservice 5-2-2011 14.23 น.
คุณ สมชาย ได้แจ้งservice 5-2-2011 14.23 น.
คุณ สมชาย ได้แจ้งservice 5-2-2011 14.23 น.
โชว์ซ้ำแต่ข้อความเดิม อ่ะครับ
Date :
2011-02-08 08:40:30
By :
makoto12
เอาค่าล่าสุดหรอ มาค่าเดียว หรือป่าว ลอง DISTINCT id ดู ได้ไหม Order by date DESC
Date :
2011-02-08 09:45:46
By :
compeng
ไม่ใช่สิ เดี๋ยวผมลองดูอีกทีคับกำลังงงงงง
ประวัติการแก้ไข 2011-02-08 15:19:43 2011-02-08 15:22:52
Date :
2011-02-08 15:07:39
By :
makoto12
Select * from ตารางที่1 as A inner join ตารางที่2 As B On A.Contact_ID = B.id
จากด้านบนนะครับลองเพิ่มเติมดูนะครับ หุหุหุ ไม่รู้จะเวริ์คอะป่าว
Select * from ตารางที่1 as A inner join ตารางที่2 As B On A.Contact_ID = B.id where A.Username='$_SESSION[MM_Username]'
เอาเช็ค กับ SESSION มีค่าตรงกับ username หรือป่าว ถ้าตรง มันก็จะแสดง แต่ session ที่ login เข้ามา
Date :
2011-02-08 15:58:40
By :
ksnick
ไม่ได้ครับพี่ ตารางหายไปหมดเลย ฮ่าๆๆๆๆๆๆ
ขอบคุณครับ ^^; ที่ช่วยตอบกระทู้ครับผมก็มั่วๆเอาไปก่อน ตอนนี้ยังพอถูๆไถๆ ได้นิดหน่อย
ตรง SELECT * FROM ไม่แน่ใจว่ามันแก้ได้ไหม พอแก้แล้วมันจะเพี้ยน
อ่าาาาา วันนี้งมต่อครับ ขอบคุณครับพี่
ประวัติการแก้ไข 2011-02-09 08:12:12 2011-02-09 09:40:46
Date :
2011-02-09 08:08:51
By :
makoto12
ได้หมดแล้วครับ ขอบคุณพี่ๆมากเลยครับ
ผมใช้
"Select * from account as A inner join cdg_service As B On A.Contact_ID = B.id_service WHERE B.Username LIKE '%$_SESSION[MM_Username]%' Order by B.id DESC "
^_^; เย้
ประวัติการแก้ไข 2011-02-09 10:58:52 2011-02-09 11:10:05 2011-02-09 11:45:17 2011-02-09 11:53:50 2011-02-09 16:12:14
Date :
2011-02-09 10:50:53
By :
makoto12
Load balance : Server 03