|
|
|
บอกวิธีการที่ จะ ใชmethod get ให้หน่อยได้ไหมครับ ของ ผม เรียกใช่แล้วมันไม่ยอมมาอ่ะครับ ควรทำยังไงดี ครับ |
|
|
|
|
|
|
|
นี่โค๊ดครับ คือ ผมอยากให้ ค่า username และ password ส่งไปที่หน้า insertdataandedit อ่ะครับ เพื่อเอา ได้ตรวจสอบ ในดาต้าเบสเพื่อแลสดงข้อมูล ต่าง ของผู้ใช่ อ่ะครับ
หน้า checkuser
Code (PHP)
<?
$host = "127.0.0.1";
$user = "root";
$password = "12345";
$dbname = "rimes1";
mysql_connect($host,$user,$password) or die("ติดต่อ Host ไม่ได้");
mysql_select_db($dbname) or die ("ติดต่อฐานข้อมูลไม่ได้");
$sql = " SELECT * FROM user_table WHERE username='". $_POST['username']. "' AND password = '". $_POST['pw']. "'";
$dbquery = mysql_db_query($dbname,$sql);
$row = mysql_fetch_array($dbquery);
$num_rows = mysql_num_rows($dbquery);
session_register ("password");
$_SESSION['password'] = $_POST['pw'] ;
if($num_rows==1 && $row[9]==0) {
session_register("loginname");
$_SESSION['loginname'] = $_POST['username'] ;
session_register("password");
echo "<script>alert('patience.....');window.location='main.php';</script>";
}
else if($num_rows==1 && $row[9]==1) {
session_register("loginname");
$_SESSION['loginname'] = $_POST['pw'] ;
session_register("password");
echo "<script>alert('Goto AdminPage.....');window.location='admin.php';</script>";
}
else {
echo "<script>alert('Cannot Enter'),window.location = 'formlogin';</script>";
}
?>
หน้า insertandedit
Code (PHP)
<?php session_start();
if(!session_is_registered('loginname')){
header("location:formlogin.php");
header("checkuser.php");
}
/* echo $_SESSION['loginname'];
echo $_SESSION['password']; */
$name = $_REQUEST['username'];
echo $name;
?>
<!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=windows-874" />
<title>Untitled Document</title>
<style type="text/css">
body { font-size: 12px;}
legend {font-size:12px; font-weight:bold;color:#00F;}
</style>
</head><?
include "./include/connect1.php";
?>
<body>
<form id="form1" name="form1" method="post" action="insertandedit1.php">
<p> <strong>Employee Detail</strong></p>
<table width="782" height="44" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr class="font22">
<td width="778" valign="top"><table width="719" border="1" align="center" cellpadding="0" cellspacing="1">
<tr class="header24">
<td colspan="10" bgcolor="#F0F0F0"><div align="center" class="header">
<h3>Employee Detail</h3>
</div></td>
</tr>
<tr bordercolor="#FFFFFF" bgcolor="#CCCCCC" class="font22">
<td width="173" align="center" class="font14-5"><div align="center">name</div></td>
<td width="295" align="center" class="font14-5"><div align="center">lname</div></td>
<td width="273" align="center" class="font14-5"><div align="center">position</div></td>
<td width="273" align="center" class="font14-5"><div align="center">Grade and step</div></td>
</tr>
<?
/* $dte1 = $_REQUEST['dte1']; */
// $dte2 = $_REQUEST['dte2'];
/* $start = $dte1; */
// $end = $dte2;
$sql_seleect = "select distinct u.user_id,fname,lname,position,gradeandstep from user_table u,time_sheet_table t where u.user_id = t.user_id ";
$result_select = mysql_query($sql_seleect) or die(mysql_error());
while($read_data = mysql_fetch_array($result_select)){
?>
<tr class="font18">
<td align="left" valign="top" class="font14-0"><div align="center"><? echo $read_data['fname']; ?></div></td>
<td align="left" valign="top" class="font14-0"><div align="center"><? echo $read_data['lname']; ?></div></td>
<td align="left" valign="top" class="font14-0"><div align="center"><? echo $read_data['position']; ?></div></td>
<td align="left" valign="top" class="font14-0"><div align="center"><? echo $read_data['gradeandstep']; ?></div></td>
</tr>
<? }
$test = "2010-11-21 10:00:00";
$peices=explode(" ",$test);
echo $pieces[0];
echo "\n";
echo $pieces[1];
?>
</table></td>
</tr>
</table>
<p> </p>
<hr />
<p><storng>
<center>
<p>Day :
<input type="text" name="day" id="day" />
</p>
<p>Monday- Sunday</p>
</center>
<center><fieldset>
<legend>Nomal Time:</legend>
<p>Date:
<input type="text" name="n_date" id="n_date" />
</p>
<p>YYYY-MM-DD<br />
<br />
Time in:
<input type="text" name="n_timein" id="n_timein" />
</p>
<p>HH:MM:SS</p>
<p>
Time out :
<input type="text" name="n_timeout" id="n_timeout" />
</p>
<p>HH:MM:SS</p>
</fieldset></center>
</p><hr />
<p><center><fieldset>
<legend>Shift Time</legend>
<p>Date:
<input type="text" name="s_date_timein" id="s_date_timein" />
</p>
<p>YYYY-MM-DD <br />
Time in:
<input type="text" name="s_timein" id="s_timein" />
</p>
<p>HH:MM:SS</p>
<p>Date:
<input type="text" name="s_date_time_out" id="s_date_time_out" />
</p>
<p>YYYY-MM-DD</p>
<p>
Time out :
<input type="text" name="s_timeout" id="s_timeout" />
</p>
<p>HH:MM:SS</p>
</fieldset></center></p><hr /><center><fieldset>
<legend><font size="4">Key Accomplishments</font></legend>
<p>
<textarea name="detail" id="detail" cols="45" rows="5"></textarea>
</p>
</fieldset></center></p>
<input type="submit" name="button" id="Insert" value="Insert" />
<?
?>
</form>
<h1> <? echo $_SESSION['loginname'];?></h1>
</body>
</html>
นี้ ล่ะครับ งง มากเลย ช่วยที น่ะครับ
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2011-04-19 09:55:27 |
By :
macro |
View :
617 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้ session แล้วนิครับ ไม่ได้ตรงไหนเอ่ย
|
|
|
|
|
Date :
2011-04-19 10:31:06 |
By :
chubichane |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
หัวข้อถาม Method Get เหอๆ
แล้วคุงพี่ ไม่ เปิด Session หรอครับ
Code (PHP)
@session_start();
|
|
|
|
|
Date :
2011-04-19 10:33:36 |
By :
compeng |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แล้ว ผม ต้องทำยังไง ต่อ ดี ครับ เพราะ ผม ไม่ ได้ action ไปที่หน้า insertandedit สะด้วยนี้ คับ มัน จะ ส่ง ค่า ไป ให้ ผม หรือ เปล่า ครับ
|
|
|
|
|
Date :
2011-04-19 10:45:49 |
By :
macro |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|