Example 1 below works:
echo "<p><h2>".$results['title']."</h2>".$results['shortdesc']."</p>";
I need to make the title linkable to the page url. I'm probably putting the ' and " in the wrong places for the link part.
Example 2 - I've added the url code but does not work:
echo "<p><h2><a href=http://www.example.com/".$results['url'].".$results['title']."</a>"</h2>".$results['shortdesc']."</p>";
Any help would be appreciated. Thx.