Sign in to follow this  
Pallav

Problem with loading in Firefox, but not IE

Recommended Posts

Sorry its on a LAN only.

 

 

 

this is the display code

 

 

 

<?php

// get the data types in use

$data_types = data_type_list($dept,$runID);



// create a graph for each data type

$i = 0;

foreach ($data_types as $data_type) {

//NOTE: It's necessary to encode the dataURL if you've added parameters to it

$dataURL = encodeDataURL("/chart_data/temp_scatter.php?animate=0&dept=$dept&runID=$runID&data_type=$data_type");



//Create the chart

echo renderChart("/charts/selectScatter.swf", $dataURL, "", "temp_graph$i", "750px", "500px", false, false);

$i++;

}

?>

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this