>> #!/usr/bin/perl -w
>>
>> use strict; # enforce variable declarations and quoting
>> use DBI;
>> use CGI qw(:standard);
>> use Image::Size;
>> print header, start_html(-title=>"UT-Austin University Supply
>> Services");
>> print redirect('http://www.utexas.edu');
>>
>> print end_html;
Brent Michalski wrote:
> james,
>
> don't print out anything before the redirect statement. the redirect is
> actually a form of HTTP header, so by printing th eheader first, you end up
> printing out 2 headers and the redirect fails.....
>
dont print out anything before OR afterwards. In otherwords, the only
thing that should be printed for a redirect is the redirect header.
Todd W.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]