我正在尝试使用php在服务器上上传照片。实际上我想在带有ASIFormDataRequest的mysql数据库请求中使用保存名称在服务器上上传照片。我想在本地服务器目录文件夹上上传照片。
if ([arrImages count] > 0) {
NSString *strURL = @"http://localhost/ApneAreaMein/upload_file.php";
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:strURL]];
[request setDelegate:self];
[request setPostValue:@"This is sample text..." forKey:@"company_logo"];//Here write down the text which will be sent.
for (int i = 0; i < [arrImages count]; i++) {
[request addData:[arrImages objectAtIndex:i] withFileName:@"image.jpg" andContentType:@"image/jpeg" forKey:[NSString stringWithFormat:@"image%d", i + 1]];
}
[request startAsynchronous];
}
else {
UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"Message" message:@"Please select images..." delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
[alertView show];
}
<?php
$con = mysql_connect('localhost','root');
mysql_select_db('apnemein_forms',$con);
$uploaddir = 'http://localhost/apneareamein/uploads/'; //folder named upload, where image will be saved (same dir as this file)
$file = basename($_FILES['company_logo']['company_logo']);
$uploadfile = $uploaddir . $file;
if (move_uploaded_file($_FILES['company_logo']['tmp_name'], $uploadfile))
{
echo "File not uploaded"; //i'm not sure about this, but it works for me like this
}
else
{
echo "<img src=\"uploads/photopicker.jpg\" />";
}
?>
答案 0 :(得分:0)
更改从
上传文件夹的路径 $uploaddir = 'http://localhost/apneareamein/uploads/';
要 $ uploaddir = getcwd()。&#39; / uploads /&#39 ;;
这将解决您的问题