1234567891011121314151617181920212223 |
- $(document).ready(function() {
- $("#upload").click(function() {
- var upload=$("#upload").val()
- var machine = $("#machine").val();
- alert(machine);
- var file = $("#file")[0].files[0];
- alert(file);
- $.ajax({
- type: 'POST',
- url: 'fileadded.php',
- data: {upload: upload, file:file},
- success: function (msg) {
- alert(msg);
- $('#messagefile').html(msg);
- }
- });
- });
- return false;
- });
|