Rgíón «hávkú wrote:

> I wanna say Thank you to all of you.
> Rob: I wouldn't have found that unescaped double quote.
> Thanx for all your comments.
> I've found the very answer on line 6
> 
> I had
>  $bd = imagenes.dat;
> 
> ans it must be
>    $bd = "imdat";agenes.
> Everything OK now. After a good sleep night ..
> 
> c u
> -rm-
> 
> 
> 
> 
> ----- Original Message -----
> From: R. Joseph Newton <[EMAIL PROTECTED]>
> To: Ramón Chávez <[EMAIL PROTECTED]>
> Cc: <[EMAIL PROTECTED]>
> Sent: Monday, March 17, 2003 5:41 PM
> Subject: Re: Help with script , error 500
> 
> 
>> Ramón Chávez wrote:
>>
>> > Hello everyone.
>>
>> Hi Ramon,
>>  I think I see your problem right here:
>>
>> >    print "content-type: text/html \n\n";
>>
>> Should be:
>> print "Content-type: text/html\n\n";
>> I can't say that that is the only problem, but that probably would be
> enough  to hang the process.  Try changing that, then see what results you
> get.

would have found it faster if you did 

   #!/usr/bin/perl
   use warnings;
   use strict;

at the top of all your programs. 

>$ perl -Mwarnings -Mstrict -e '$bd = imagenes.dat;'
Global symbol "$bd" requires explicit package name at -e line 1.
Bareword "imagenes" not allowed while "strict subs" in use at -e line 1.
Bareword "dat" not allowed while "strict subs" in use at -e line 1.
Execution of -e aborted due to compilation errors.



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

Reply via email to