I have an array with about one hundred values that I am trying to move from one page to a JP Graph file.
I have the jpgraph file included in the same page as this data array is created using (serialize and urlencode) and then IMG SRC="/jpgraph_graph_file.php?ydata=$ydata&xdata=$xdata
This works as long as the URL stays below the Apache URL character limit, but sometimes I go a bit above and I need to find a way to get that data across.
Can I use query strings with php include files? I try it an it crashes with an error about the file not being able to be included... but if I remove it works (but then the data is missing).
Or maybe I can change apache's URL character limit?
how do you think I can get this to work?