I am trying to write an mulitple image upload script...I'm stuck on part where javascript sends the dataStrings to the php script. So problem is that nothing is going to be inserted in database, the php script is working fine, therefore I'm not goona post it here.
Example...
HTML Code:
<input type="file" id="files" name="files[]" multiple />
<div id="list"></div>
Javascript Code:
$(".update_button").click(function()
{
var imgval = $('#files').val();
var updateval = $("#update").val();
var dataString = 'update='+ updateval+'&img='+ imgval;
$("#flash").show();
$("#flash").fadeIn(400).html('Loading Update...');
$.ajax({
type: "POST",
url: "wall-message_ajax.php",
data: dataString,
cache: false,
success: function(html)
{
}
});
}
return false;
});