in reply to Converting relative URLs to absolute URLs

use URI::URL; print url("foo/test.html")->abs("http://www.sun.com/");'
output:
http://www.sun.com/foo/test.html

make more sense now?


-Waswas