In article <00c101c1993b$662efc40$b81411d5@pc2002>, Henk Van Ess wrote:
> Dear all,
> 
> I'm enhancing the Google-script, and would love to get an OUTPUT like this:
> 
> http://www.google.com/search?q=leuk&as_qdr=m3
> 
> How do I get the FIXED value &as_qdr=m3 after the VARIABLE q?
> 
> I don't need a Prefix now, but a suffix. How do I enter this in Perl?

You can change the line :
 print redirect("http://www.google.com/search?q=$prefix%20$search"; );
 
To :
 print redirect(
        "http://www.google.com/search?q=$prefix%20$search&as_qdr=m3"; 
 );

-- 
briac
        The Jade Emperor 
        under an elm tree. A wolf 
        walks beside a stream.

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to