0

我可以将字符串从我的应用程序发送到我的远程数据库!我能够将图像从数据库下载到我的应用程序并正确显示它们!但是,如果我想将图像从应用程序发送到我的数据库?我认为mysql期望一个blob格式......我正在尝试,但我认为这不是正确的方法

NSData* data = UIImagePNGRepresentation(theDataObject.immagineGestione);
[Base64 initialize];
NSString *strEncoded = [Base64 encode:data];

NSString *strURL = [NSString stringWithFormat:@"http://www.xxxxxx-xo.nxx/Scrxxts/Evxxto/WIGixxxnto.php?image=%@",strEncoded];

NSData* dataUrl = [NSData dataWithContentsOfURL:[NSURL URLWithString:strURL]];

我的 php 文件没有启动!

 $image = mysql_real_escape_string($_GET['image'], $database);

 $sql = "INSERT INTO annotazioni (immagine) values (file_get_contents($image))"

 mysql_query($sql); 
4

0 回答 0