It looks like you're new here. If you want to get involved, click one of these buttons!
function gamename_fonction(){
var game_name = $('#game_name').val();
return game_name;
}
$(function() {
$('#file_upload').uploadify({
'swf' : '/admin/ajax/uploadify.swf',
'uploader' : '/admin/ajax/uploadify.php',
'checkExisting' : '/admin/ajax/check-exists.php',
// Your options here
'method' : 'post',
'formData' : { 'someKey' : 'gamename_fonction()' } ,
});
}); $(function() {
$('#file_upload').uploadify({
'swf' : '/admin/ajax/uploadify.swf',
'uploader' : '/admin/ajax/uploadify.php',
'checkExisting' : '/admin/ajax/check-exists.php',
// Your options here
'method' : 'post',
'formData' : { 'someKey' : '' } ,
'onUploadSuccess' : function(file, data, response) {
alert('The file ' + file.name + ' was successfully uploaded with a response of ' + response + ':' + data);
},
'onUploadStart' : function(file) {
$('#file_upload').uploadify('settings', 'formData', {'someKey' : $('#game_name').val() });
}
});
});