I'm stuck on an odd problem with sending values between scripts. Take the following example.
$h=20; $w=80; print "<img src=\"image.php?h=$h&w=$w\">"; Now this is a much watered down version of what I'm doing, but the idea is the same. I don't want to put the values I'm passing to the image in the html code to be passed with a get. I'd like to be able to maybe pass then in a POST format though I'm not sure how I can do that or if I can. The other idea I had was to start a session and register $h and $w then when I start the images script I can connect to the session and get the values form there though I would have to use Arrays so that I could keep data on many diff. images. I could pass the array index to the image script which would index all the array elements needed. The only down side I can see to that is that I would have to serialize the array vars in order to maintain them between sessions (index.php and image.php) and I would have a higher over head on my session code which may impact preformance greatly. Anyone have any ideas about this as in good idea bad idea, or other suggestions on how to pass this data without letting the user see it. -Jim _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php