I know that I must be doing something basic wrong. I'm trying to do a drill-down link from a chart into another frame. Here is what is working:
($result2) {
while($ors1 = mysql_fetch_array($result2)) {
$strXML .= "<set value='".$ors1['OKAY']."' link='" . urlencode("ChannelAlarmQuery.php?poll_interval=" . $ors1['poll_interval']) . "'/>";
}
This opens the "drill-down" chart in the current frame. How do I convert this to make it open in another frame on the current page (the current page is "index.html")? The destination frame name is "ChannelAlarmFrame"