htctbb

Members
  • Content count

    2
  • Joined

  • Last visited

About htctbb

  • Rank
    Forum Newbie
  1. Php-Mysql Link To Frame

    EDIT: Upon further testing, I'm thinking "link=F- " is NOT supported in the free version of fusioncharts. Can anyone confirm? Thanks
  2. Php-Mysql Link To Frame

    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"