|
|
|
อยากสอบถามว่า ถ้าเขียนเวบ php ติดต่อ mysql แล้ว มาเปลี่ยนเปน ... |
|
|
|
|
|
|
|
ทุก ๆ อย่างที่มีการดึงข้อมูลครับ
|
|
|
|
|
Date :
2013-01-31 12:50:08 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พอมีรูปแบบการเปลี่ยนป่าวค่ะ ว่าต้องเปลี่ยนเปนอย่างไร
|
|
|
|
|
Date :
2013-01-31 13:02:09 |
By :
noony |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แนะนำกระทู้ก่อนหน้านี้แล้วน่ะครับ เพียงแต่คุณไม่อ่านเองครับ
|
|
|
|
|
Date :
2013-01-31 13:04:30 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็ยัง งง ค่ะ คือหมายถึง สคริปที่เขียนประมานนี้ ค่ะ
Code (PHP)
<?
include "../chksession.php";
if ($sess_status=="Super Administrator"or $sess_status=="admin") {
?>
<!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=tis-620">
<title>:: Online Monitor ::</title>
<link href="../addmin.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="../images/tsc.ico" />
</head>
<body>
<? include "../include/topmenu-admin.php"; ?>
<h4> Search LOG <h4>
<center>
<TABLE class="tablemanager">
<form action="query_all.php" method="post" name="testform" >
<p>
จาก
<input name="dc" size="11">
<a href="javascript:void(0)" onclick="if(self.gfPop)gfPop.fPopCalendar(document.testform.dc);return false;" ><img class="PopcalTrigger" align="absmiddle" src="PopCalendarXP/calbtn.gif" width="34" height="22" border="0" alt=""></a> <span class="style15"> ถึง
<input name="dc2" id="dc2" size="11">
<a href="javascript:void(0)" onclick="if(self.gfPop)gfPop.fPopCalendar(document.testform.dc2);return false;" ><img class="PopcalTrigger" align="absmiddle" src="PopCalendarXP/calbtn.gif" width="34" height="22" border="0" alt=""></a> </span><!--<input type="submit" name="Submit" value="Submit">-->
</p>
<p> </p>
<!-- PopCalendar(tag name and id must match) Tags should not be enclosed in tags other than the html body tag. -->
<iframe width=174 height=189 name="gToday:normal:agenda.js" id="gToday:normal:agenda.js" src="PopCalendarXP/ipopeng.htm" scrolling="no" frameborder="0" style="visibility:visible; z-index:999; position:absolute; top:-500px; left:-500px;">
</iframe>
กรุณากรอกหมายเลข MID<br />
<input class="textfield" type="text" name="MERCHANT" id="textfield" />
กรุณากรอกหมายเลข TID<br />
<input class="textfield" type="text" name="TERMINAL" id="textfield" />
<input class="button_gray" type="submit" name="button" id="button" value="Query" />
</form>
<br /><br />
<?
include "../connect.php";
if($TERMINAL=="" && $MERCHANT=="" && $dc=="" &&$dc2==""){
echo"<center><h2> Insert DATA !!</h2><br><br><br><center>"; exit();
}else if($TERMINAL!="" && $MERCHANT==""){ $sql="select * from logs where TERMINAL='$TERMINAL'";
}else if($TERMINAL=="" && $MERCHANT!=""){ $sql="select * from logs where MERCHANT='$MERCHANT'";
}else if($TERMINAL!="" && $MERCHANT!="" ) {$sql="select * from logs where TERMINAL='$TERMINAL' && MERCHANT='$MERCHANT'";
}else if($dc!="" && $dc2!="") { $sql="select * from logs where DATETIME BETWEEN '$dc' AND '$dc2'";
}
$result=mysql_db_query($dbname,$sql);
$num=mysql_num_rows($result);
if ($num<=0) {
echo"<center> NO DATA</center>";
}else{
echo"<table class=\"tablemanager\">";
echo"<tr class=\"yellow\" ><td>LOG_DATE</td><td>MERCHANT</td><td>TERMINAL</td><td>APPVER </td><td>CRC </td><td> IP</td></tr>";
while($rs=mysql_fetch_array($result)){
$LOG_DATE=$rs[LOG_DATE];
$MERCHANT=$rs[MERCHANT];
$TERMINAL=$rs[TERMINAL];
$APPVER=$rs[APPVER];
$CRC=$rs[CRC];
$IP=$rs[IP];
echo"<tr><td align=center> $LOG_DATE</td><td> $MERCHANT</td><td> $TERMINAL</td><td>$APPVER </td><td>$CRC </td><td> $IP</td></tr>";
}
echo"</table>";
}
?>
<!-- 1 -->
</TABLE>
<? }else {
header("Location: ../admin_fault.php");
} ?>
<br /><h2>
</body>
</html>
แต่หนู INCLUDE file connect ไว้ในทุกหน้าที่มีก่ารเชื่อมต่อกับ DB แสดงว่าไม่ต้องเปลี่ยนแล้วใช่ไหม ค่ะ
|
|
|
|
|
Date :
2013-01-31 14:00:14 |
By :
noony |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าคุณทำไฟล์ connect ไว้คุณก็แค่เปลี่ยน ที่ไฟล์ connect ครับ
|
|
|
|
|
Date :
2013-01-31 20:33:22 |
By :
popnakub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้วพวก ตัวแปร ละคะ
$sql="select * from logs where TERMINAL='$TERMINAL'";
ต้องเปลี่ยนเปนแบบนี้ปาว ค่ะ
$Strsql="select * from logs where TERMINAL='$TERMINAL'";
|
|
|
|
|
Date :
2013-01-31 23:05:52 |
By :
noony |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เปลี่ยนเฉพาะพวก function ที่ใช้ในการจัดการกับ Database Oracle ครับ เช่น conenct , result
|
|
|
|
|
Date :
2013-02-01 09:42:03 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่วินลองยกตัวอย่างโค้ดนี้ได้ไหม ค่ะ ว่าตรงไหนบ้างที่ต้องเปลี่ยน เดี่ยวหนูจะเอาไปปรับใช้กับหน้าอื่นๆค่ะ
Code (PHP)
<?
$user_login=$_POST[user_login];
$pass_login=$_POST[pass_login];
if ($user_login=="" or $pass_login=="") {
echo "<table width=\"471\" height=\"127\" border=\"0\" align=\"center\"><tr><td align=\"center\"bgcolor=\"#FFFFCC\">";
echo "<a href=\"javascript:history.back();\"><h3>ERROR : กรุณากรอกข้อมูลให้ครบนะครับ<h3></a>"; exit();
echo "</td></tr></table>";
}
include "connect.php";
$sql="select * from tb_user where UserName='$user_login' and Password=password('$pass_login')";
$result=mysql_db_query($dbname,$sql);
$num=mysql_num_rows($result);
mysql_close();
if($num<=0) {
echo "<table width=\"471\" height=\"127\" border=\"0\" align=\"center\"><tr><td align=\"center\"bgcolor=\"#FFFFCC\">";
echo "<a href=\"javascript:history.back();\"><h3>ERROR :Username หรือ Password ไม่ถูกต้อง</h3></a>";
echo "</td></tr></table>";
} else {
$UserName=mysql_result($result, 0, "UserName");
$Password=mysql_result($result, 0, "Password");
$Status=mysql_result($result, 0, "Status");
$email_user=mysql_result($result, 0, "email_user");
session_start();
$_SESSION[sess_userid]=session_id();
$_SESSION[sess_username]=$user_login;
$_SESSION[sess_email_user]=$email_user;
$_SESSION[sess_status]=$Status;
$_SESSION[login]=1;
header("Location: index.php");
}
?>
<!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>:: Online Moniter ::</title>
</head>
<body>
</body>
</html>
|
|
|
|
|
Date :
2013-02-01 10:11:42 |
By :
noony |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใส่ code php ครอบด้วยน่ะครับ
|
|
|
|
|
Date :
2013-02-01 10:20:12 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
งง โค้ดนี้ ถ้าใช้ DB mysql ก้อใช้ได้ นะค่ะ แต่ตอนนี้ เทสตัว connect ได้แล้ว แต่ ตอน Checkmember ในหน้านี้ มัน ERROR หนู เลยให้พี่วินดูหน่อย ว่า ต้องแก้ conenct , result แก้ยังไง ค่ะ ไม่เข้าใจ ขอบคุน ค่ะ
|
|
|
|
|
Date :
2013-02-01 10:24:33 |
By :
noony |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แนะนำให้ไปศึกษาบทความ php กับ oracle ครับ
ไม่งั้นคุณก็จะถามเรื่อย ๆ ครับ
|
|
|
|
|
Date :
2013-02-01 11:30:42 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|