I'm creating graphs on the fly in PERL and I'm embedding the plot data in the URL of the graph generator like the following:
# Print the graph.
#
print "<img width=400 height=400 src=\"graph.cgi?$width&$height&$plot_data\">";
My problem is, as I generate graphs with higher resolutions I start getting "URL too long" errors. Is there another method of passing information to a script or a way to increase the allowable length of a URL?
Thankyou,
Chris
# Print the graph.
#
print "<img width=400 height=400 src=\"graph.cgi?$width&$height&$plot_data\">";
My problem is, as I generate graphs with higher resolutions I start getting "URL too long" errors. Is there another method of passing information to a script or a way to increase the allowable length of a URL?
Thankyou,
Chris