> > this is the perl script : abc.pl(say) -- this is in my cgi-bin...
> >
> > #!/usr/bin/perl
> > print "content-type: text/html\n\n";
>
> You need to print html headers when you're printing to a browser, i.e.
>
> print "Content-type:text/html\n\n";
>
> -dave
I must be blind this morning...
> this is the perl script : abc.pl(say) -- this is in my cgi-bin...
>
> #!/usr/bin/perl
> print "content-type: text/html\n\n";
>
> open (IN, ">abc.txt");
> $x = ($inputs{name});
> print IN $x;
> close (IN);
>
> open (IN, "abc.txt");
> @arr = ;
> print @arr;
> close (IN);
>
> and this is th
hi,
this is the perl script : abc.pl(say) -- this is in my cgi-bin...
#!/usr/bin/perl
print "content-type: text/html\n\n";
open (IN, ">abc.txt");
$x = ($inputs{name});
print IN $x;
close (IN);
open (IN, "abc.txt");
@arr = ;
print @arr;
close (IN);
and this is the html ... abc.html(say) i