Avíseme si alguien sabe cuál es el problema con este código.Carga de archivos PHP usando jquery post
Básicamente quiero cargar un archivo usando jQuery
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(document).ready(function(event) {
$('#form1').submit(function(event) {
event.preventDefault();
$.post('post.php',function(data){
$('#result').html(data);
});
});
});
</script>
</head>
<body>
<form id="form1">
<h3>Please input the XML:</h3>
<input id="file" type="file" name="file" /><br/>
<input id="submit" type="submit" value="Upload File"/>
</form>
<div id="result">call back result will appear here</div>
</body>
</html>
y mi php 'post.php'
<?php
echo $file['tmp_name'];
?>
Nombre del archivo subido no se devuelve. Problema es que no pude acceder al archivo cargado.
¡Gracias de antemano! Shiv
¿Qué haces –