I'm looking for a simple way to do the following thing:
when $lang = 'english' AND $page = 'collection'
than $page_content = $marketing_eng
! there's no databs ! ! values are being posted with url !
Thanks, Death
if($_GET['lang'] == 'english' && $_GET['page'] == 'collection'){ $page_content = $marketing_eng; }