<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;">
<title>Insert title here</title>
<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="jquery.ocupload-1.1.2.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#upload1').upload({
name: 'file',
method: 'post',
enctype: 'multipart/form-data',
action: 'upload.php',
onSubmit: function() {
$('#progress1').text('Загрузка файла...');
},
onComplete: function(data) {
$('#progress1').text('Файл успешно загружен!');
}
});
});
</script>
</head>
<body>
<a id="upload1" style="background: green; font-size: 24px; color: white;" href="#">Выберите файл</a>
<span id="progress1"></span>
<?php echo $_FILES['file']['name'];
?>
</body>
</html>
..я начинающий и с jquery толком не работал, неполучается вытащить имя фала а так все пашет ..