|
|
|
จัดเก็บเอกสาร อยากเก็บไฟล์ ด้วย แต่ไม่ทราบวิธีครับ รบกวนด้วยครับ มีภาพประกอบ |
|
|
|
|
|
|
|
ขอรบกวนหน่อยครับ
คือผมกำลังทำ ระบบจัดเก็บเอกสารครับ ก็เก็บ ข้อความ ตัวเลขทัั่่วไป แต่เก็บไฟลผมไม่สามารทำได้ึี ไม่ทราบว่าทำผิดหรือเปล่าลองเอา code การเก็บไรต่างๆมาลองดูก็ไม่ผ่าน ไม่ทราบว่ามีคำชี้แนะใด บ้างครับ ขอบคุณครับ
Code
<?php require_once('../Connections/db.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "fAdd")) {
$insertSQL = sprintf("INSERT INTO ``data`` (ID_DOC, `DATE`, ID_DOC2, DOC_TITLE, DOC_TYPE, ATTACH, `COMMENT`) VALUES (%s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['ID_DOC'], "int"),
GetSQLValueString($_POST['DATE'], "date"),
GetSQLValueString($_POST['ID_DOC2'], "text"),
GetSQLValueString($_POST['DOC_TITLE'], "text"),
GetSQLValueString($_POST['DOC_TYPE'], "text"),
GetSQLValueString($_POST['ATTACH'], "text"),
GetSQLValueString($_POST['COMMENT'], "text"));
mysql_select_db($database_db, $db);
$Result1 = mysql_query($insertSQL, $db) or die(mysql_error());
$insertGoTo = "input_ok.html";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
?><!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 {
margin-top: 5px;
}
-->
</style></head>
<body>
<form action="<?php echo $editFormAction; ?>" method="POST" enctype="multipart/form-data" name="fAdd" id="fAdd">
<label></label>
<table cellspacing="0" cellpadding="0">
<col width="81" />
<col width="111" />
<tr height="28">
<td width="111" height="28" align="left">เลขที่คณะฯ</td>
<td align="left" width="111"><input type="text" name="ID_DOC" id="ID_DOC" /></td>
</tr>
<tr height="28">
<td height="28" align="left">วันที่รับเอกสาร</td>
<td align="left"><input type="text" name="DATE" id="DATE" /></td>
</tr>
<tr height="28">
<td height="28" align="left">เลขที่ เอกสาร</td>
<td align="left"><input type="text" name="ID_DOC2" id="ID_DOC2" /></td>
</tr>
<tr height="28">
<td height="28" align="left">ชื่อเรื่อง</td>
<td align="left"><label>
<input type="text" name="DOC_TITLE" id="DOC_TITLE" />
</label></td>
</tr>
<tr height="28">
<td height="28" align="left">ประเภท</td>
<td align="left"><label>
<select name="DOC_TYPE" id="DOC_TYPE">
<option selected="selected">เลือกประเภท</option>
<option value="ประชุมคณะฯ">ประชุมคณะฯ</option>
<option value="ประชุมผู้บริหาร">ประชุมผู้บริหาร</option>
<option value="ประชุมปฏิบัติการ">ประชุมปฏิบัติการ</option>
<option value="สำเนาเอกสาร">สำเนาเอกสาร</option>
</select>
</label></td>
</tr>
<tr height="28">
<td height="28" align="left">เอกสารแนบ</td>
<td align="left"><label>
<input type="file" name="ATTACH" id="ATTACH" />
</label></td>
</tr>
<tr height="28">
<td height="28" align="left">หมายเหตุ</td>
<td align="left"><label>
<textarea name="COMMENT" id="COMMENT" cols="45" rows="5"></textarea>
</label></td>
</tr>
</table>
<br />
<tr>
<td> </td>
<td bgcolor="#FFFFFF"><label>
<input type="submit" name="add" id="add" value="Submit" />
</label>
<label>
<input type="reset" name="reset" id="reset" value="Reset" />
</label>
<br /></td>
</tr>
<input type="hidden" name="MM_insert" value="fAdd" />
</form>
</body>
</html>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2012-04-14 00:51:32 |
By :
tuanonline |
View :
3906 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
การจัดเก็บเอกสารมี 2 แบบครับคือ เก็บเอกสารลงใน Database เลย กับ จัดเก็บ ชื่อไฟล์เอกสาร หรือ path ของเอกสาร
ทั้ง 2 วิธีก็มีทั้งข้อดีและข้อเสียครับ
แบบที่ 1 คือ จัดเก็บที่เดียวกันทั้งหมดลงใน Database เลย วิธีนี้ง่ายต่อการจัดการ
แต่ข้อเสียอาจจะทำให้ Database ทำงานช้าเมื่อมีจำนวน Record เพิ่มมากขึ้น
แบบที่ 2 คือ เก็บข้อมูลต่างๆ ลงใน Database ยกเว้นไฟล์เอกสารเก็บเป็น Raw File (เหมือนต้นฉบับ)
เก็บข้อมูล หรือ เรียกใช้ข้อมูลได้รวดเร็วกว่า แต่ข้อเสียคือ จำเป็นที่จะต้องมีการจัดการไฟล์ที่ดีพอสมควร
|
|
|
|
|
Date :
2012-04-14 01:14:34 |
By :
smeproject |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมพยายามหาข้อมูลที่เกี่ยวกับ file field ว่าใช้อย่างไร ตอนนี้ติดปัญหาที่ว่า การเก็บข้อมูลวันที่ของเอกสาร แล้วไฟลที่อัพ ไปท่านใดพอจะกรุณาอธิบายให้ก็ได้ครับ ขอบคุณครับ
|
|
|
|
|
Date :
2012-04-15 23:23:32 |
By :
tuanonline |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|