Del
11-09-1998, 06:29 AM
Okay, I know I can grab the title of a page by using $response->title() (well, it's $response for me anyway *s*). Is there some similar way of grabbing the meta keyword and description tags too? Or do I have to build a regular expression (or two) to get that kind of info?
I've read through every file in the lwp download (the hard way, via my editor hehehe), and didn't really find anything that answers my question. Still piddling thru the Unix for Dummies book learning what to do with telnet hehehe.
Also, is LWP what I'd use to do the file transfer from one server to another? (Similar to a browser upload, only different. Think I know how to pull it off, just wanna double check.)
Finally, on the server->server transfer thing, can I transfer an image the same as a text(ish) file? For example,
$newimg = "$stuff grabbed from LWP Get request";
open(IMG,">/blah/image.gif");
print IMG $newimg;
close(IMG);
Thanks in advance,
Del
I've read through every file in the lwp download (the hard way, via my editor hehehe), and didn't really find anything that answers my question. Still piddling thru the Unix for Dummies book learning what to do with telnet hehehe.
Also, is LWP what I'd use to do the file transfer from one server to another? (Similar to a browser upload, only different. Think I know how to pull it off, just wanna double check.)
Finally, on the server->server transfer thing, can I transfer an image the same as a text(ish) file? For example,
$newimg = "$stuff grabbed from LWP Get request";
open(IMG,">/blah/image.gif");
print IMG $newimg;
close(IMG);
Thanks in advance,
Del