I've been looking at this for a few minutes and not sure why this isn't working in IE.
I have the following query
Code: Select all
$getcollege = $db->execute("SELECT `college_name`, `college_id` FROM `college` WHERE `college_ID`=?", array($player->City_ID));
Code: Select all
$getcollege1 = $getcollege->fetchrow;
echo "<a href=\"education.php?act=getclasses&collegeid=" . $getcollege1['college_id'] ."\">" . $getcollege1['college_name'] . "</a>";
but in IE, the text appears on the page, but it's not a link.
What am I overlooking?