Onclick event and PHP function

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

I have some link on which if user click, should do the following things:

- open a particular page
- setup to sessions some particular variable value

however, PHP function should be declared before HTML headers.

so i was thinking about something like that

<?php
   function vardef($lg)
   {
     ... store lg to my session variables ...
   }
?>

<HTML>
...
<A Href="none" Onclick="<?php vardef("eng") ?>">english</A>
<A Href="none" Onclick="<?php vardef("fre") ?>">french</A>
...
</HTML>

but this does not work because my session variable is always setup to the
last value (in this case "fre"), even if i click only on english :-(

could you help me with this PHP issue ?
thanks a lot,

Alain

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux