Dear all,
I need to change dynamically ###KEYWORD### in text with same word or phrase like in echo ($keyword);
Text with ###KEYWORD### is dynamic content. It is displayed RSS feed.
Can it be done..?
Thank you
<?php
session_start();
$_SESSION['raw_query'] = $_GET['q'];
$_SESSION['ad_group'] = str_replace("-", " ", $_GET['q']);
$keyword = $_SESSION["ad_group"];
echo ($keyword);
?>
<p>This is text, and ###KEYWORD### is word I wish to replace with same thing that is in "echo ($keyword);".</p>



Reply With Quote

Bookmarks