I am using the following code to send arrays to a line graph. It works fine with Firefox but not with Internet Explorer.
<img src="../Graphs/Line_Graph.php? <? } ?>
title=<? echo $title_Query2; ?>
&line1=<? echo base64_encode( serialize($line1_Query2) ); ?>
&line2=<? echo base64_encode( serialize($line2_Query2) ); ?>
&line3=<? echo base64_encode( serialize($line3_Query2) ); ?>" />
Here is the code to get the arrays:
$line1 = base64_decode( $_GET['line1']);
$line1 = unserialize($line1);}
$line2 = base64_decode( $_GET['line2']);
$line2 = unserialize($line2);}
$line3 = base64_decode( $_GET['line3']);
$line3 = unserialize($line3);}
The arrays generally have about 30 points of data.
Any thoughts as to what the problem may be?