Sorry i am a beginner
if i have an Array (ex. name[1-10])
how do i pass it from one page to another and be able to display it
please reply, thanks acinom
A couple of ways come to mind. You could register it as a session variable, or you could cycle through the array in hidden form elements (ie <input type=hidden value='something' name = 'name[1]'><input type=hidden value='something' name = 'name[2]'><input type=hidden value='something' name = 'name[3]'>..etc) and pass them that way.
D
use serialize() or use sessions.
Since tyou are new, I'd suggest serialize(). It lets you print the an array as a string, and later with unserialize you can convert the string back into an array.
Check the manual for details.