Hello,
I use variable variables to build variable list. All of those variables are send by method POST or GET. Right now I do something like this:
$news_content = "news_content_lang$language_id";
$news_content = urlencode($$news_content);
where $$news_content is _POST data, I have tried many combinations, e.g.:
$news_content = "_POST['news_content_lang$language_id']";
$news_content = urlencode($$news_content);
but.... nothing... any ideas ???