-
-
Save MotiurRahman/7951918506a30631e1bc9305903c77bd to your computer and use it in GitHub Desktop.
File upload to the server using Titanium Test environment: Ti SDK 3.1.3.GA, CLI 3.2.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
var form_url = 'http://apps.priyo.com/jonopriyo/image.php'; | |
var win = Ti.UI.createWindow({ | |
layout : 'vertical', | |
backgroundColor : '#fff' | |
}); | |
var btnPhoto = Ti.UI.createButton({ | |
title : 'Select Photo' | |
}); | |
btnPhoto.addEventListener('click', function(e) { | |
// Open photo gallery for user to select photo | |
Ti.Media.openPhotoGallery({ | |
mediaTypes : [Ti.Media.MEDIA_TYPE_PHOTO], | |
success : function(e) { | |
btnPhoto.value = e.media; | |
anImageView.image = e.media; | |
btnPhoto.title = '[ Photo Selected ]'; | |
}, | |
cancel : function() { | |
btnPhoto.value = null; | |
btnPhoto.title = 'Select Photo...'; | |
}, | |
error : function(err) { | |
Ti.API.error(err); | |
btnPhoto.value = null; | |
btnPhoto.title = 'Select Photo...'; | |
} | |
}); | |
}); | |
win.add(btnPhoto); | |
var btnSubmit = Ti.UI.createButton({ | |
title : 'Submit' | |
}); | |
btnSubmit.addEventListener('click', function(e) { | |
var c = Titanium.Network.createHTTPClient({ | |
onload : function(e) { | |
Ti.API.info('this.responseText' + this.responseText); | |
json = JSON.stringify(this.responseText); | |
alert(this.responseText); | |
}, | |
onerror : function(e) { | |
alert(JSON.stringify(e)); | |
} | |
}); | |
c.open('POST', form_url); | |
Ti.API.info('form_url ' + encodeURI(form_url)); | |
// c.setRequestHeader('Content-Type', 'multipart/form-data'); | |
c.send({ | |
userid : 81, | |
image : btnPhoto.value | |
}); | |
}); | |
win.add(btnSubmit); | |
var anImageView = Ti.UI.createImageView({ | |
}); | |
anImageView.addEventListener('load', function() { | |
Ti.API.info('Image loaded!'); | |
}); | |
// Add to the parent view. | |
win.add(anImageView); | |
win.open(); | |
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$data = array(); | |
if ($_SERVER['REQUEST_METHOD'] == 'POST') { | |
$userid = $_POST['userid']; | |
$allowedExts = array("gif", "jpeg", "jpg", "png"); | |
$temp = explode(".", $_FILES["image"]["name"]); | |
$extension = end($temp); | |
if ((($_FILES["image"]["type"] == "image/gif") || ($_FILES["image"]["type"] == "image/jpeg") || ($_FILES["image"]["type"] == "image/jpg") || ($_FILES["image"]["type"] == "image/pjpeg") || ($_FILES["image"]["type"] == "image/x-png") || ($_FILES["image"]["type"] == "image/png")) && in_array($extension, $allowedExts)) { | |
if ($_FILES["image"]["error"] > 0) { | |
$data['error_code'] = $_FILES["image"]["error"]; | |
} else { | |
$data['name'] = $_FILES["image"]["name"]; | |
$data['type'] = $_FILES["image"]["type"]; | |
$data['size'] = $_FILES["image"]["size"]; | |
$data['tmp_name'] = $_FILES["image"]["tmp_name"]; | |
$image_name = uniqid() . $_FILES["image"]["name"]; | |
move_uploaded_file($_FILES["image"]["tmp_name"], "uploads/" . $image_name); | |
$data['new_name'] = $image_name; | |
} | |
} else { | |
$data['file'] = 'Invalid file'; | |
} | |
} | |
echo json_encode($data); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment