in reply to Re: Re: link errors
in thread link errors
You missed an equal '=' from the URL, should be user=$user.my $next_html = "http://.../albums.cgi?...&pic=$nextpic&user$user";
Where the print $currentpic; bit will print the image name to the standard out, which will certainly get printed before your content-type header, and this of cause will interfere with how the HTML is handled by the client browser. Remember that anything printed to STDOUT will get sent to the target browser.my $currentpic = pop(@splitsrc); print $currentpic;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: link errors
by eoin (Monk) on Sep 21, 2003 at 10:24 UTC |