|
Posted by Deep on 05/13/05 10:04
Hi,
If the parameters are available at the url of
mysite.com. Then the parameters should be available
there in the page to echo. Instead of $_REQUEST try
$_GET
Try using this......
<?php
echo "<h3>mysite.com Homepage </h3> ";
$lang=$_GET['lang'];
$ctry=$_GET['ctry'];
echo "Country= ".$ctry." <br> Language= ".$lang;
?>
....Deeps...
--- Olav Drageset <olav2@drageset.net> wrote:
> I want url mysite.no to redirect to mysite.com with
> parameters lang=no
> and ctry=no, but the parameters do not follow the
> redirection.
>
> mysite.no/index.php is
>
> <?
> Header ('Location:
> http://mysite.com/index.php?lang=no&ctry=no' ) ;
> exit;
> ?>
>
>
> mysite.com/index.php is
>
> <? echo "<h3>mysite.com Homepage </h3> ";
> $lang = $_REQUEST['lang'];
> $ctry = $_REQUEST['ctry'];
> echo "Country= $ctry <br> Language= $lang";
> ?>
>
> When I browse mysite.no mysite.com homepage is shown
> with lang and ctry as blank
> When I browse mysite.com/index.php?lang=no&ctry=no
> parameters lang and ctry are set to no as I wish
>
> I have the server on my own laptop where I also do
> the browsing. I use
> PHP 4.2.2
>
> I kindly got some answers yesterday that do not seem
> to solv the
> question so I have made myself more specific. Do
> anyone have a clue why
> the parameters are stripped from the redirection?
> (I am not very trained, but as far as I know the
> parameters should be
> redirected??!!)
>
> Thanks
> Olav
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
________________________________________________________________________
Yahoo! India Matrimony: Find your life partner online
Go to: http://yahoo.shaadi.com/india-matrimony
Navigation:
[Reply to this message]
|