Сообщение обновлено: после комментариев совет.
Index.php
<?php $id = uniqid(""); ?> </head> <body> <form method="post" action="frame.php" target="upload_iframe" enctype="multipart/form-data"> <label for="file">Filename:</label> <input type="file" name="file" id="file" /> <input type="hidden" name="APC_UPLOAD_PROGRESS" id="progress_key" value="<?php echo $id; ?>"/> <br /> <input type="submit" name="submit" value="Submit" /> </form> <iframe name="upload_iframe" style="width: 400px; height: 100px;"> </iframe>
frame.php
<?php if(isset($_POST['progress_key'])) { echo "hey1"; $status = apc_fetch('upload_'.$_POST['progress_key']); echo $status['current']/$status['total']*100; } echo "hey2"; ?>
Все еще не работает :(, я даже не получаю данные формы POST в фрейме. Где я иду так неправильно?
С уважением.