Forum Moderators: coopster
[mysite.com...]
How can we get additional content or an ad to be displayed somewhrere on the results page for certain popular $search_term‘s and show nothing for others?
Ideas?
[mysite.com...]
but the results page is dynamic so it can't be templated for each word. Is there some code that can say, if the keyword is in the refer show this otherwise show nothing? Or if $search_term is “widget” show widget.php or widget.gif...etc.
switch ($search_term) {
case 'red_widget':
$ad = 'red_widget.gif';
break;
case 'green_widget':
$ad = 'green_widget.gif';
break;
case 'blue_widget':
$ad = 'blue_widget.gif';
break;
default:
$ad = 'black_widget.gif';
}