Emiliano Boragina wrote:
> Hi list…
>
> All this in the same php:
>
>
>
> <?
>
> $folder = 'pictures;
>
> $load = copy($_FILES['file']['tmp_name'] , $folder . '/' . $_FILES
> ['file']['name']);
>
> if ( $load ) {
>
> echo "Picture upload!";
>
> } else {
>
> echo "no picture =(";
>
> }
>
> ?>
>
> <form action="" method="post" enctype="multipart/form-data">
>
> <input type="text" name="folder">
>
> <input type="submit" value="ADD FOLDER">
>
> <hr>
>
> <input type="file" name="file">
>
> <input type="submit" value="UPLOAD">
>
> </form>
>
>
>
> When I try the php the echo "no picture =("; is there. How can I do to don’t
> appears the message before I upload de picture.
>
> Thanks.
>
>
>
>
>
> + _
> // Emiliano Boragina _
>
> // Diseño & Comunicación //////////////////
> + _
>
> // [EMAIL PROTECTED] /
> // 15 40 58 60 02 ///////////////////////////
> + _
>
>
>
>
if(!empty($_POST['file'])) {
//your php
}
-Shawn
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php