Does anybody know why the following code doesn't work properly?
function LinksPage()
{
$ClickedWord = $_GET['clickedword'];
foreach($_SESSION['Links'] as $key=>$value)
{
if ($key == $ClickedWord)
echo $key." ".$value.' <br />';
}
}
When I check $ClickedWord, $_SESSION['Links'], I see that there is a key in $_SESSION['Links'] that matches $ClickedWord but when I run the program if doesn't generate output.

$ClickedWord. So, if your$keycontainstestand your$ClickedWordcontainstestit won't match. Try trimming the white spaces and other characters from the$ClickedWordlike so$key == trim($ClickedWord). – Shef Sep 17 '11 at 10:56