Guten Tag Forum,
das ist mein gesamter Code:
Alles anzeigen
Das Problem ist nur die Files kommen auch an, aber ich bekomme einfach meine Prozente nicht angezeigt bzw. nur ganz am Ende 100% und das wars.
Danach faengt erst das JS an die Requestst zu senden.
Hoffe Ihr koennt mir da helfen.
Mfg Patrick
das ist mein gesamter Code:
PHP-Quellcode
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" xml:lang="de">
- <head>
- <title>APC Upload</title>
- <script type="text/javascript">
- function ajax(uid) {
- var req;
- try {
- req = window.XMLHttpRequest?new XMLHttpRequest():
- new ActiveXObject("Microsoft.XMLHTTP");
- } catch (e) {
- //Kein AJAX Support
- }
- req.onreadystatechange = function() {
- if ((req.readyState == 4) && (req.status == 200)) {
- document.getElementById("status").innerHTML = req.responseText;
- }
- }
- req.open('GET', 'status.php?uid='+uid, true);
- req.send("");
- }
- </script>
- </head>
- <body>
- <iframe src="upload.php" name="hidden_upload" style="display:show"></iframe>
- <div id="status"></div>
- <form action="upload.php" name="upload" target="hidden_upload" method="post" enctype="multipart/form-data">
- <div>
- <input type="hidden" name="APC_UPLOAD_PROGRESS" value="<?php echo uniqid();?>"/>
- <input type="file" name="upload[]" multiple />
- <input type="submit" onclick="this.disabled=false; setInterval('ajax(\''+this.form.APC_UPLOAD_PROGRESS.value+'\')', 750); "/>
- </div>
- </form>
- </body>
- </html>
Das Problem ist nur die Files kommen auch an, aber ich bekomme einfach meine Prozente nicht angezeigt bzw. nur ganz am Ende 100% und das wars.
Danach faengt erst das JS an die Requestst zu senden.
Hoffe Ihr koennt mir da helfen.
Mfg Patrick
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von paddy14 ()