Hi,
I want to reload the same (dynamic) page, it's content in several languages, by clicking little flags which are located at a precise, same place on the page - AND ITS NOT WORKING


!!
The click triggers a php script which basically says
Code:
$_SESSION['lang'] = <Some_language>;
require ('webpage.php');
where webpage.php is the dynamic page, in succesive languages, with it's content drawn out from the database which contains the content in all languages I chose to display.
Upon start, the webpage is displayed correctly. But when I click the flag which should reload the same page in a different language, lots of contents in the page are missing (pictures, mainly).
And when I look at the page html (View Page Source) - it seems OK !
Mike