Here are two possible solutions:

1. <?php
if(!$QUERY_STRING):
     $url = "indexr.php";
else:
     $url = "indexr.php?$QUERY_STRING";
endif;
?>

2. Make link to "indexr.php?<?php print "$QUERY_STRING"?>"

THank you for help =)) I just was too lazy=(

Youri

> You might want to use the format:
> 
>    http://www.body-builders.org/index.php.en?links=1
>    http://www.body-builders.org/index.php.ru?links=1
> 
> so that you can take advantage of Apache's mod_mime features, and not
> have to do so much complicated guesswork to determine when you are
> displaying in an alternate language (what if you had pages called
> taste.php and taster.php already - how would you make the first one
> russian?)
> 
> miguel
> 
> On Sat, 11 May 2002, Yura wrote:
> 
> > I'm looking for possibility to change language of my site on fly you
> > may take a look at http://body-builders.org and see yourself - now
> > when I press language button I can get to the main page in sertain
> > language but what I want it to do is if I'm for example at 'Links'
> > page and click on language button (or text link) I get to 'Links'
> > page on different language. It can be reached by changing one
> > charachter in the name of the file Let's say I'm on links page in
> > English:
> > 
> > http://www.body-builders.org/index.php?links=1
> > 
> > I want to go to russian page which would be:
> > 
> > http://www.body-builders.org/indexr.php?links=1
> > 
> > So I want do make a script to do this change
> > 
> > Youri
> > 
> > <>< <>< <>< <>< God is our provider ><> ><> ><> ><> 
> > http://www.body-builders.org/
> > 
> > 
> > 
> 
> 
> 

<>< <>< <>< <>< God is our provider ><> ><> ><> ><> 
http://www.body-builders.org/


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to