Hello Wise Ones ;)
I've sought help here once before and got the answer I needed, so I thought I'd try again on a different problem.
I have two domains and want to dynamically pull content from one into the other. I managed to find a free script that allows me to do this, but it doesn't do any clean up. I've read that extra <html> <head> and <body> tags aren't a problem for IE, but they can cause errors in Nav.
Here's the code snippet I have that will get my content from my site:
$uatopasson = $ENV{"HTTP_USER_AGENT"};
$referertopasson = $ENV{"HTTP_REFERER"};
$ua = LWP::UserAgent->new;
$ua->agent($uatopasson);
$req = HTTP::Request->new (GET => "$file");
$req->header('referer' => $referertopasson);
$res = $ua->request($req);
$webpage = $res->content;
print "Content-type: text/html\n\n";
print $webpage;
What do I add to it before printing $webpage to remove the <html>, </html>, <body>, </body>, <head>, and </head> tags (as well as everything that falls between <head> </head>)? I'm also guessing that I would no longer need: print "Content-type: text/html\n\n"; Correct?
Thanks in advance for any help you guys could give me.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.