Forum Moderators: coopster
can anyone tell me how i can use php to echo the URL and replace "eng" with "fr"
thank you
$eng_link = "index.php?language=eng&pageID=12";
$fr_link = str_replace("eng", "fr", $eng_link);
echo $fr_link;