I have an include with a function and within that function I have another include. No problems until I try to get my form data which is within a multi-dimentional array which doesn't seem to travel.
Does anyone know a way to pass it?
Chris
Well, do you have register_globals on or off? Sounds like you know what you're talking about, so I assume this is not the problem. However, you need to post some code before anyone can attempt to address your problem.
Norm
If you are just using includes there should not be a problem as using include is just like plonking the code in there. I you are trying to access a variables within a function which is declared outside that function you need to use the global keyword. HTH Rob