On 4/15/06, Alain Roger <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Sorry to look like stupid for some of you, but i'm still not able to link to
> link (<a> </a>) or to a button via onclick event) the refresh of my page.
>
> i've check META tag and also $PHP_SELF variable, but it does not work.

What happens when you try?

> i have 1 PHP page on which i have 3 flags (3 images)
> if user click on 1 of these flags, $_SESSION['Localization'] is set up to
> flag language and the page must be refreshed.

Something like this should work:

<a href="<?php echo $_SERVER['PHP_SELF']; ?>?lang=en">English</a>
<a href="<?php echo $_SERVER['PHP_SELF']; ?>?lang=fr">French</a>

Then check $_GET['lang'] to use the new language var (then set it in
the session etc).

--
Postgresql & php tutorials
http://www.designmagick.com/

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

Reply via email to