ID: 11504
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old-Status: Open
Status: Closed
Bug Type: *Programming Data Structures
Operating system:
PHP Version: 4.0.4pl1
Assigned To:
Comments:
I can't reproduce this. Please try with PHP 4.0.5
Previous Comments:
---------------------------------------------------------------------------
[2001-06-15 11:38:01] [EMAIL PROTECTED]
This code upload files and create a list of files uploaded. But sometimes when the
form is sended (when try the 2nd or 3th round trip) all variables loose your values.
the PHP.ini configuration is the default.
*********************************test1.php******************
<HTML>
<HEAD>
<Title>Upload</Title>
</HEAD>
<BODY>
<?PHP
if (is_uploaded_file($userfile))
{
copy($userfile, "upload/".$userfile_name);
$FileListName[] = $userfile_name;
$FileListSize[] = $userfile_size;
};
?>
<form Action="test1.php" Method="POST" ENCTYPE="MULTIPART/FORM-DATA" name="form1">
<?PHP
for($i=0;$i<count($FileListName);$i++)
{
echo "n$FileListName[$i]n";
echo "$FileListSize[$i]n";
};
echo count($FileListName);
for($j=0;$j<count($FileListName);$j++)
{
echo "<input type="hidden" name="FileListName[]"
value="$FileListName[$j]">";
echo "<input type="hidden" name="FileListSize[]"
value="$FileListSize[$j]">";
};
?>
<br>
<INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="2000000">
<input type="file" name="userfile" size="25" >
<input type="submit" value="Agregar" name="B2">
</form>
</BODY>
</HTML>
************************************************************
Sorry for my english...
Dante Daniel Galli
---------------------------------------------------------------------------
ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=11504&edit=2
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]