Who can help me with the following.
I have an allertbox with text in it but i want different languages for the text in the allertbox
$lang = array();
$lang['ALERTBOX_A'] = 'To do this, you must first be logged in.';
onClick="alert(' <?php $lang['ALERTBOX_A']; ?>')"
In this case the language is in english but i have tree different langauges. That deppends on the choise of the user.
with this code i don't see anny text in the allertbox.
How can i fix it ?
Thanks