for php we use :
PHP Code:
<?php echo str_replace('-', ' ', $_GET['kw'])?>
i.e on the page in the code we'd put it in a sentance such as
PHP Code:
the cheapest <?php echo str_replace('-', ' ', $_GET['kw'])?> you'll find
And the link to the page should be like this :
....yoursite.co.uk/index.php?kw=keywordhere
if you wish to have the keyword in the meta title and description then use these too in the head area:
PHP Code:
<meta name="description" content="<?php echo str_replace('-', ' ', $_GET['kw'])?>.">
<meta name="keywords" content="<?php echo str_replace('-', ' ', $_GET['kw'])?>
with other keywords/description it would look like this on the code side :
PHP Code:
<meta name="description" content="Get the best <?php echo str_replace('-', ' ', $_GET['kw'])?>.here">
<meta name="keywords" content="red widget, green widget, <?php echo str_replace('-', ' ', $_GET['kw'])?>.here guaranteed">
and anything after the "kw=" in the url will be injected into the page just where you'd like it in the page text, keywords and description
Bookmarks