|
|
|
วิธีการ upload ไฟล์ Mssql Code แบบนี้ พอดีจะใส่ ตัว upload file ต่อนะครับ สร้าง broese มาแล้วครับ |
|
|
|
|
|
|
|
ก็เหมือนกับ upload ทั่วไป
ไม่เกี่ยวกับ ว่าเป็น sqlrv หรือ mysqli
|
|
|
|
|
Date :
2016-05-27 08:45:31 |
By :
compiak |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จะ อัพโหลด ให้ แบบ เอาชื่อเข้า mssql แล้วกด link แล้วได้ไฟล์ที่อัพโหลดอ่ะครับ งง จริงๆๆ
index.php
Code (PHP)
<form action="save.php" name="frmAdd" method="post">
<table width="344" border="1">
<tr>
<th width="95">id</th>
<td width="233"><input type="text" name="txtid" size="5"></td>
</tr>
<tr>
<th width="95">date</th>
<td><input type="text" name="txtdate" size="20"></td>
</tr>
<tr>
<th width="95">name</th>
<td><input type="text" name="txtname" size="20"></td>
</tr>
<tr>
<th>File </th>
<td><input type="text" name="txtfile" size="20" /> </tr>
</table>Picture :
<input type="file" name="filUpload">
<p>
<input type="submit" name="submit" value="submit">
</p>
</form>
save.php
Code (PHP)
if( $conn === false )
{
die( print_r( sqlsrv_errors(),true));
}
$sql = "INSERT INTO upload VALUES (?,?,?)";
$params = array($_POST['txtdate'], $_POST['txtname'], $_POST['txtfile']);
$stmt = sqlsrv_query( $conn, $sql, $params);
if( $stmt === false )
{
die( print_r( sqlsrv_errors(), true));
}
else
{
echo "Record add successfully";
}
sqlsrv_close($conn);
?>
รบวนผู้รู้ด้วยครับ
|
|
|
|
|
Date :
2016-05-27 08:51:55 |
By :
pissanu8970 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$_FILES["filUpload"]["name"]
เก็บเฉพาะชื่อไฟล์ก็พอครับ ส่วนภาพลง Folder
|
|
|
|
|
Date :
2016-05-28 09:05:58 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|