see below

> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, June 18, 2002 11:22 AM
> To: [EMAIL PROTECTED]
> Subject: My script can't upload the data
> 
> 
> Hello!
> 
> The following part of code uploads 0k.
> 
> #!/usr/bin/perl
> 
> ...
> 
> if($foto) {
> open (F, ">$path/$number/$foto") || die "Cannot open $!";
> while(<$foto>) {
## should be
while(<F>) {
> print F $_;
> }
> close F;
> }
> 
> Where could be the problem?
> 
> Please help,
>  Collette.
> 
> 
> 
> 
> -- 
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 

----------------------------------------------------------------------------
--------------------
The views and opinions expressed in this email message are the sender's
own, and do not necessarily represent the views and opinions of Summit
Systems Inc.


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to