0

我有这个脚本

<?php

if (!empty($_FILES)) {
  $tempFile = $_FILES['Filedata']['tmp_name'];
  $targetPath = dirname(__FILE__) . $_POST['folder'] . '/';
  $pathinfoFile = pathinfo($_FILES['Filedata']['name']);
  $targetFile =  str_replace('//', '/', $targetPath) . uniqid() . '.' . $pathinfoFile['extension'];
  move_uploaded_file($tempFile, $targetFile); 
}

此脚本来自Uploadify,修改为使用唯一名称保存文件。用户上传文件后,我需要保存临时、唯一和原始名称。当用户最终提交表单时,将使用这些值。我试图保存这些值,$_SESSION但我遇到了这里列出的问题:

http://uploadify.com/forum/viewtopic.php?f=5&t=43 ,

我尝试了论坛的解决方案,但没有奏效,有没有更简单的方法来解决这个问题?

4

1 回答 1

0

对不起,我又试了一次,$_POST['PHPSESSID']现在正在工作,谢谢你的帮助

于 2010-03-27T18:23:33.223 回答