I am dividing my web site to run on two seperate servers in order to give our single server a little bresthing room.
I need some of the scripts on one server to require scripts that are located on the other server. When doing this, I loose variables defined in the first script.
Example: Script (a) which is running on server (a) defines $var. Then it requires scrip (b) which is running on server (b). Script (b) needs needs $var inorder to do its work, but $var is not seen by script(b).
How can I make $var visable to script (b)?
Thanks in advance,
Lance