I am setting the title for a drupal site of mine with the following script:
<?php
drupal_set_title($GET['Foo1'].' '.$GET['Foo2'].' '.$_GET['Foo3']);
?>
that's working just fine... but I want to include some additional text in the title like this:
"search.php?Foo1=Bar1&Foo2=Bar2&Foo3=Bar3" ... title would be "Bar1 Bar2 Bar3 TEXT"
How can I insert additional text into this output? Can I put an echo in here somehow?