Jump to content

PHP headers with a variable in it


jackr1909

Recommended Posts

Hi, i have the following code:

 

<?php

if ($_GET['query']=="google") header( 'Location: redir.php?query=echo $_GET['query']' );

?>

 

And it dosen't foward because of the attempted variable insertion, is there any-way i could do this, apart from using a html meta?

 

 

Thanks,

 

Jack Renshaw

Link to comment
https://forums.phpfreaks.com/topic/240183-php-headers-with-a-variable-in-it/
Share on other sites

Of course! The parameter that header takes is a string. So you should check the PHP manual for how to manipulate strings. In this case what you want to do is concatenate, or combine, your string and the variable. Here's how you would do it:

 

if ($_GET['query']=="google") header( 'Location: redir.php?query=' . $_GET['query'] );

 

As you can see, a period, ., is the concatenation operator.

 

Alternatively,

 

if ($_GET['query']=="google") header( "Location: redir.php?query={$_GET['query']}" );

 

Oh, and for the future if you're going to be posting code please use [[/tt]code] or [[tt]php] tags, it makes it much easier to read. I've edited your post for you this time.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.