I would start here if I were you...
http://www.php.net/manual/en/features.file-upload.php
Mikey
> -----Original Message-----
> From: Metin Kale [mailto:m-kale@xxxxxxxxxxxxxxxx]
> Sent: 23 May 2003 17:22
> To: php-windows@xxxxxxxxxxxxx
> Subject: [PHP-WIN] Pictures array
>
>
>
> Hello all..
>
> I have a web form where people can upload pictures. As my input name in
> file "form.php", I wrote:
>
> <form method=post action=\"submitpics.php\" name=\"frm\"
> enctype=\"multipart/form-data\">
> <input type=\"hidden\" name=\"MAX_FILE_SIZE\" value=\"5000000\">
> <input type=\"file\" name=\"picture[]\">
> <input type=\"file\" name=\"picture[]\">
> <input type=\"file\" name=\"picture[]\">
> <input type=\"submit\">
> </form>
>
>
> That gives me an array called picture with three elements. On the
> receiving end, submitpics.php, I wrote:
>
> echo $picture[0]."<p>";
> echo $picture[1]."<p>";
> echo $picture[2]."<p>";
>
> The echoes gives me the path name instead of displaying the picture. The
> hope is to have a foreach ($picture as $p) feature, but it's not
> working. Also, $picture[0]_name, $picture[0]_size, etc, do not work.
>
> Any help will be much appreciated.
> Thanks,
> Metin
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|