raju82

Members
  • Content count

    2
  • Joined

  • Last visited

About raju82

  • Rank
    Forum Newbie
  1. IE7 Issues (Puzzling...)

    It seems to remove the XML parts check here: http://pastebin.ca/375480
  2. IE7 Issues (Puzzling...)

    Hey all Let me first say how I have my web site directory set up I have a 'admin' section and a 'user' section. Now when I view my charts in the admin section with IE 7 it is fine and also in FF in works fine too, however when I view in my user section the chart doesn't display - it just has the "movie is not loaded" box but in FF it works fine! Here is my code for echoing the chart: $strXML = ""; $strQuery = "SELECT WEEK(answers.answerdate) AS d, avg(answers.answervalue) AS avg_value, playerid FROM answers, calendar WHERE answers.answerdate AND answers.playerid = '$playerid' AND calendar.diaryflag = 1 GROUP BY d ASC"; $result = mysql_query($strQuery) or die(mysql_error()); while($ors = mysql_fetch_array($result)) { $strXML .= ""; } $strXML .= ""; echo renderChart("charts/Line.swf", "", $strXML, "FactorySum", 500, 350, false, false); PLEASE HELP!!!!