|
|
|
ช่วยทีครับ เช็คไม่ให้กรอกข้อมูลซ้ำนะครับ โดยยึดจาก Username ครับ ถ้า Username ซ้ำก็ไม่สามารถกรอกได้นะครับ |
|
|
|
|
|
|
|
เช็คไม่ให้กรอกข้อมูลซ้ำนะครับ โดยยึดจาก Username ครับ ถ้า Username ซ้ำก็ไม่สามารถกรอกได้นะครับ
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 action="" method="post" enctype="multipart/form-data" name="form1" id="form1">
<fieldset>
<legend>ข้อมูลทั่วไปเกี่ยวกับสถานที่ฝึกงาน</legend>
<table width="563" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2"><div align="center">
<legend>ข้อมูลทั่วไปเกี่ยวกับสถานที่ฝึกงาน</legend>
</div></td>
</tr>
<tr>
<td width="261"><div align="right">ชื่อหน่วยงาน</div></td>
<td width="296"><input type="text" name="organization" /></td>
</tr>
<tr>
<td><div align="right">หัวหน้าที่หน่วยงานชื่อ</div></td>
<td><input type="text" name="chief" /></td>
</tr>
<tr>
<td><div align="right">ตำแหน่ง</div></td>
<td><input type="text" name="position" /></td>
</tr>
<tr>
<td><div align="right">ที่อยู่หน่วยงาน</div></td>
<td><textarea name="address"></textarea></td>
</tr>
<tr>
<td><div align="right">ลักษณะงานขององค์การ</div></td>
<td><textarea name="nature"></textarea></td>
</tr>
<tr>
<td><div align="right">ประวัติองค์การโดยย่อ</div></td>
<td><textarea name="history"></textarea></td>
</tr>
<tr>
<td><div align="right">จำนวนพนักงาน</div></td>
<td><input type="text" name="number" /></td>
</tr>
<tr>
<td><div align="right">ลักษณะการดำเนินงาน</div></td>
<td><textarea name="job"></textarea></td>
</tr>
<tr>
<td><div align="right">แผนภูมิการจัดองค์การ</div></td>
<td><textarea name="chart"></textarea></td>
</tr>
<tr>
<td><div align="right">แผนที่/สถานที่ตั้งหน่วยงาน</div></td>
<td><label>
<input type="file" name="fileUpload" id="fileUpload" />
</label></td>
</tr>
<tr>
<td colspan="2"><label>
<div align="center"><font size="2" face="MS Sans Serif, Tahoma, sans-serif">
<input name="username" type="hidden" value="<?php echo $dbarr['username'] ;?>" />
</font>
<input type="submit" name="Submit" value="Upload" />
</div>
</label></td>
</tr>
</table>
</fieldset>
</form>
</body>
</html>
<?php include "connDB.php"; ?>
<?php
if($_POST[Submit]){
$namefile = $_FILES['fileUpload']['name'];
$sql = "INSERT INTO agencies(id_org,organization,chief,position,address,nature,history,number,job,chart, map,username)VALUES('$id_org','$organization','$chief','$position', '$address','$nature','$history','$number','$job','$chart','$namefile',
'$_SESSION[login_true]')";
if(@copy($_FILES["fileUpload"]["tmp_name"],"uploaded/".$_FILES["fileUpload"]["name"])){
$pic = basename( $_FILES['fileUpload']['name']);
$filename = $_FILES['fileUpload']['name'];
}
$query = mysql_query($sql) or die(mysql_error());
print("<script language=javascript>
window.alert('เพิ่มข้อมูลเรีบบร้อยแล้ว');
self.location='?main=member_ag';
</script>");
}
?>
Tag : PHP
|
ประวัติการแก้ไข 2013-03-15 19:07:34
|
|
|
|
|
Date :
2013-03-15 18:48:54 |
By :
FREEDOOM |
View :
953 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM customer WHERE CustomerID = '".$_POST["txtCustomerID"]."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if($objResult)
{
echo "CustomerID already exist.";
}
else
{
$strSQL = "";
$strSQL = "INSERT INTO customer ";
$strSQL .="(CustomerID,Name,Email,CountryCode,Budget,Used) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtCustomerID"]."','".$_POST["txtName"]."','".$_POST["txtEmail"]."' ";
$strSQL .=",'".$_POST["txtCountryCode"]."','".$_POST["txtBudget"]."','".$_POST["txtUsed"]."') ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
}
mysql_close($objConnect);
?>
|
|
|
|
|
Date :
2013-03-15 20:52:10 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จัดไป
|
|
|
|
|
Date :
2013-03-16 07:54:44 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|