- เครดิต
- 0
- เพื่อน
- ทักทาย
- บล็อก
- อัลบั้ม
- โพสต์
- กระทู้
- แชร์
- สำคัญ
- สิทธิ์อ่าน
- 10
- จำนวนผู้ติดตาม
- จำนวนผู้กำลังติดตาม
- เพศ
- ไม่บอก
|
แก้ไขครั้งสุดท้ายโดย cco12 เมื่อ 2011-3-1 14:55
ช่วยดูด้วยครับ แก้ตรงใหนบ้างอะครับ (จะเอาไปใช้ติดใน discuz)
<?php
echo $_FILES["file"]["tmp_name"]."<br />";
if($_POST['submit'])
{
$ftp_server = ''; // Your Ftp server
$ftp_user_name = ''; // Your Ftp user name
$ftp_user_pass = ''; // Your Ftp password
// file to move:
$local_file = $_FILES["file"]["tmp_name"];
// connect to FTP server (port 21)
$conn_id = ftp_connect($ftp_server, 21) or die ("Cannot connect to host");
// send access parameters
ftp_login($conn_id, $ftp_user_name, $ftp_user_pass) or die("Cannot login");
// turn on passive mode transfers (some servers need this)
// ftp_pasv ($conn_id, true);
// perform file upload
if ($ftp_path = ftp_chdir($conn_id, "data")) {
echo "Current directory is now: " . ftp_pwd($conn_id) . "\n";
}
$ftp_path = $_FILES["file"]["name"];
$upload = ftp_put($conn_id, $ftp_path, $local_file, FTP_BINARY);
// check upload status:
print (!$upload) ? 'Cannot upload' : '<br />Upload complete';
print "\n";
// close the FTP stream
ftp_close($conn_id);
}
?>
<form id="form1" name="form1" enctype="multipart/form-data" method="post" action="">
<label>File:
<input type="file" name="file" id="file" />
</label>
<input type="submit" name="submit" value="submit" />
</form>
ผมแก้ไม่เป็นอะครับ ตรงใหนที่แก้ช่วยพิมพ์ภาษาไทยให้ด้วยครับ ผมขอตัวอย่างการแก้ด้วยนะครับ |
|
|
|
|
|
|