อยากให้ชื่อผู้ที่เข้าสู่ระบบที่เป็นคนกรอกข้อมูลในส่วนนี้ มาลงฐานข้อมูลตัวนี้ด้วยนะครับ เพื่อจะเอามาโชว์ว่าข้อมูลนี้เป็นของใครนะครับ
อยากให้ชื่อผู้ที่เข้าสู่ระบบที่เป็นคนกรอกข้อมูลในส่วนนี้ มาลงฐานข้อมูลตัวนี้ด้วยนะครับ เพื่อจะเอามาโชว์ว่าข้อมูลนี้เป็นของใครนะครับ
โค้ดครับ
Code (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>Untitled Document</title>
</head>
<body>
<?php
include("connDB.php") ;
mysql_select_db($db) ;
$echo = "Program by </a>
" ;
$result = mysql_query("select * from member where username='$_SESSION[login_true]'") or die ("Err Can not to result") ;
$dbarr = mysql_fetch_array($result) ;
?>
<form id="form1" name="form1" method="post" action="">
<table width="374" border="0" align="center" cellpadding="2" cellspacing="2">
<tr>
<td colspan="2"><div align="center">สรุปผลการปฎิบัติงานประจำสัปดาห์</div></td>
</tr>
<tr>
<td width="136"><div align="right">สัปดาห์ที่</div></td>
<td width="224"><label>
<input type="text" name="week" />
</label></td>
</tr>
<tr>
<td><div align="right">ระหว่างวันที่</div></td>
<td><input type="text" name="date" /></td>
</tr>
<tr>
<td><div align="right">ถึงวันที่</div></td>
<td><input type="text" name="date_d" /></td>
</tr>
<tr>
<td><div align="right">ปัญหาที่พบ</div></td>
<td><textarea name="panha"></textarea></td>
</tr>
<tr>
<td><div align="right">ทางแก้ไข</div></td>
<td><textarea name="panha_tp"></textarea></td>
</tr>
<tr>
<td> </td>
<td><font size="2" face="MS Sans Serif, Tahoma, sans-serif">
<input name="password" type="hidden" value="<?php echo $dbarr['username'] ;?>" />
<input type="submit" name="Submit" value="Submit" />
</font></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
</table>
</form>
</body>
</html>
<?php include "connDB.php"; ?>
<?php
if($_POST[Submit]){
$sql = "INSERT INTO abstract(id_app,
week,date,date_d,panha,panha_tp,username)
VALUES('$_POST[id_app]','$_POST[week]','$_POST[date]','$_POST[date_d]','$_POST[panha]','$_POST[panha_tp]','$_POST[username]')";
$query = mysql_query($sql) or die(mysql_error());
?>
<script language="javascript">
alert("กรอกข้อมูลเรียบร้อยแล้ว");
window.location = "?main=ab_member";
</script>
<?php }?>
Tag : PHP
Date :
2013-03-07 14:18:35
By :
FREEDOOM
View :
701
Reply :
2
Load balance : Server 00