|
|
|
รบกวนพี่ๆช่วยดูโค๊ด อัพโหลด csv ให้หน่อยค่ะ ทำตามในเว็บแล้วไม่ได้สักที |
|
|
|
|
|
|
|
รบกวนพี่ๆช่วยดูโค๊ด อัพโหลด csv ให้หน่อยค่ะ ทำตามในเว็บแล้วไม่ได้สักที
อยากให้เช็ค ว่า
1. ถ้าไม่เลือกไฟล์เวลากดปุ่มอัพโหลด ให้เตือนว่ายังไม่ได้อัพโหลดไฟล์
2. ให้เช็คอีกว่าต้องเป็นไฟล์ .csv เท่านั้น ค่ะ
คือว่าทำตามในเว็บแล้วค่ะ แต่ยังไม่ได้ซักทีเลยค่ะ
อันนี้เป็นหน้าอัพโหลดไฟล์นะคะ
Code (PHP)
<? @session_start(); ?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>ระบบการเบิกค่าสอนพิเศษออนไลน์</title>
<style type="text/css">
<!--
body {
margin-top: 0px;
background-color: #99CCFF;
}
.style1 {color: #000000}
.style3 {font-size: 14px}
.style4 {
font-size: 24px
}
-->
</style>
</head>
<body>
<table width="1024" border="1" align="center" cellpadding="1" cellspacing="0" bordercolor="#66CCFF">
<tr>
<td colspan="2" valign="top"><?php include("../include/head_allhome.php");?></td>
</tr>
<tr>
<td width="200" height="231" align="center" valign="top"><table width="200" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><?php include("../include/display_alluser.php");?></td>
</tr>
</table>
<table width="200" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><?php include("../include/menu_admin.php");?></td>
</tr>
</table>
</td>
<td width="820" valign="top" bgcolor="#FFCCFF">
<p class="style4"> </p>
<p align="center"><strong>เพิ่มข้อมูลตำแหน่ง</strong><strong>ทางบริหาร</strong></p>
<form name="form2" method="post" action="">
<table width="419" border="1" align="center" cellpadding="1" cellspacing="0" bordercolor="#000000">
<tr>
<td width="172" align="right"><span class="style3">ชื่อตำแหน่งทางบริหาร</span></td>
<td width="237"><input type="text" name="name_mana" id="name_mana"></td>
</tr>
<tr>
<td align="right"><span class="style3">ภาระสอนขั้นต่ำ</span></td>
<td><input type="text" name="load_ma" id="textfield4"></td>
</tr>
<tr>
<td colspan="2" align="center"><label>
<input type="submit" name="add" id="add" value="บันทึก">
<input type="submit" name="cancel" id="button3" value="ยกเลิก">
</label></td>
</tr>
</table>
</form>
<p align="center"><?
if($add==true){//ตรวจสอบว่าปุ่มถูกกดหรือไม่
include(".../dbconnect.php");
$sql_insert = "
INSERT INTO `project`.`position_manage` (
`position_idmana` ,
`positionmana_name` ,
`load_mana`
)
VALUES (
NULL , '$name_mana', '$load_ma'
)";
mysql_query($sql_insert)or die ("insert error");
echo "<script language='javascript'>
alert('เพิ่มข้อมูลเรียบร้อยแล้ว');
window.location='admin_searchposition.php';
</script> ";
}
if($cancel==true){
echo "<script language='javascript'> alert('ยกเลิก การเพิ่มข้อมูลแล้ว');
window.location='admin_searchposition.php';
</script> "; }
?></p>
<p align="center"> </p>
<table width="521" height="28" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr>
<td width="172" height="26" align="center" valign="middle"><span class="style3"><strong>อัพโหลดไฟล์ลงฐานข้อมูล</strong></span></td>
<td width="343" align="center" valign="middle">
<script language="JavaScript">
function OnUploadCheck()
{
var extall="csv";
file = document.form1.fileCSV.value;
ext = file.split('.').pop().toLowerCase();
if(parseInt(extall.indexOf(ext)) < 0)
{
alert('Extension support : ' + extall);
return false;
}
return true;
}
</script>
<form name="form1" method="post" action="../admin/phpCSV_check_numfiled_position_manage.php" enctype="multipart/form-data" onSubmit="return OnUploadCheck();" >
<input type="file" name="fileCSV" >
<input name="btnSubmit" type="submit" value="อัพโหลด">
</form>
</td>
</tr>
</table> <p align="center"> </p></td>
</tr>
<tr>
<td height="33" colspan="2"><p align="left"><span class="style1">
</span><?php include("../include/footer_allhome.php");?></p> </td>
</tr>
</table>
</body>
</html>
อันนี้เป็นหน้าโค๊ดเพิ่มข้อมูลลงฐานนะคะ
Code (PHP)
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>ระบบการเบิกค่าสอนพิเศษออนไลน์</title>
<style type="text/css">
<!--
body {
margin-top: 0px;
background-color: #99CCFF;
}
.style1 {color: #000000}
.style3 {font-size: 14px}
.style4 {
font-size: 24px;
font-weight: bold;
}
-->
</style></head>
<body>
<table width="1024" border="1" align="center" cellpadding="1" cellspacing="0" bordercolor="#66CCFF">
<tr>
<td colspan="2" valign="top"><?php include("../include/head_allhome.php");?></td>
</tr>
<tr>
<td width="200" height="231" align="center" valign="top"><table width="200" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><?php include("../include/display_alluser.php");?></td>
</tr>
</table>
<table width="200" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><?php include("../include/menu_admin.php");?></td>
</tr>
</table> </td>
<td width="820" align="center" valign="top" bgcolor="#FFCCFF">
<p> </p>
<table width="541" border="1" cellpadding="0" cellspacing="0" bordercolor="#000000">
<tr>
<td height="87" align="center">
<?
//copy($_FILES["fileCSV"]["tmp_name"],$_FILES["fileCSV"]["name"]);
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
mysql_query("SET NAMES TIS620");
mysql_query("SET character_set_results=tis620");
$objDB = mysql_select_db("project");
$objCSV = fopen($_FILES["fileCSV"]["name"], "r");
while (($objArr = fgetcsv($objCSV, 1000, ",")) !== FALSE) {
$strSQL = "SELECT * FROM position_manage WHERE position_idmana = '".$objArr[0]."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if($objResult)
{
// Update
$strSQL = "UPDATE position_manage SET positionmana_name = '".$objArr[1]."' ";
$strSQL .=",load_mana = '".$objArr[2]."'";
$strSQL .="WHERE position_idmana = '".$objArr[0]."' ";
$objQuery = mysql_query($strSQL);
}
else
{
$strSQL = "INSERT INTO position_manage ";
$strSQL .="(position_idmana,positionmana_name,load_mana)";
$strSQL .="VALUES ";
$strSQL .="('".$objArr[0]."','".$objArr[1]."','".$objArr[2]."')";
//$objQuery = mysql_query($strSQL);
$objQuery = mysql_query($strSQL) or die(mysql_error());
} echo $strSQL;
}
fclose($objCSV);
echo "<script language='javascript'>
alert('Upload & Import Done ทำการอัพไฟล์ลงฐานข้อมูลเรียบร้อยแล้ว');
window.location='../admin/admin_searchposition.php';
</script> ";
?>
</td>
</tr>
</table>
<p class="style4"> </p>
<p> </p>
</td>
</tr>
<tr>
<td height="33" colspan="2"><p align="left"><span class="style1">
</span><?php include("../include/footer_allhome.php");?></p> </td>
</tr>
</table>
</body>
</html>
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2013-03-03 21:00:15
|
|
|
|
|
Date :
2013-03-03 20:59:22 |
By :
totopam |
View :
763 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โค๊ดมัน import ได้แล้วค่ะ แต่ว่ายังเช็คค่าว่าง กับ เช็คว่าเป็นไฟล์ .csv ไม่ได้ค่ะ ขอคำแนะนำหน่อยค่ะ
|
|
|
|
|
Date :
2013-03-04 19:39:53 |
By :
totopam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|