Jump to content

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.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.