|
|
|
เปิดไฟล์ .mov บางไฟล์ก็ได้ บางไฟล์ก็ไม่ได้ เกิดจากอะไรหรอครับ |
|
|
|
|
|
|
|
อันนี้อีกหน้าหนึ่งครับ
Code (PHP)
<html lang="en">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<head>
<title></title>
</head>
<body>
<?php
ini_set('display_errors', 1);
error_reporting(~0);
$serverName = "localhost";
$userName = "root";
$userPassword = "8'l6;iiI";
$dbName = "vdo";
$conn = mysqli_connect($serverName,$userName,$userPassword,$dbName);
mysqli_set_charset($conn, "utf8");
$sql = "SELECT * FROM files ORDER BY FilesID DESC";
$query = mysqli_query($conn,$sql);
?>
<table width="600" border="1" >
<tr>
<th width="91"> <div align="center">Name</div></th>
<th width="98"> <div align="center">View</div></th>
</tr>
<?php
while($result=mysqli_fetch_array($query,MYSQLI_ASSOC))
{
?>
<tr>
<td><div align="center"><?php echo $result["Name"];?></div></td>
<td align="center"><a href="view.php?FilesID=<?php echo $result["FilesID"];?>">view</a></td>
</tr>
<?php
}
?>
</table>
<?php
mysqli_close($conn);
?>
</body>
</html>
|
|
|
|
|
Date :
2016-02-12 14:36:59 |
By :
binzmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆ ครับผมเช็คแล้วเป็นที่ชื่อไฟล์ ครับ ตรงเปลี่ยนไม่มีพวกตัว . $ & อะไรประมาณนี้ครับ
|
|
|
|
|
Date :
2016-02-16 15:34:51 |
By :
binzmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2016-02-16 18:05:41 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|