Hi, is it possible to pass array from one php to another using:
using name.php?array_name
thanks steve
you can do something like this:
if ($QUERY_STRING == "executearray") { functionname(); } else { }
look into the command serialize. It allows you to convert an array or any other data type for that case into a string. You can later on save that string into a file or record and pass on the filename or record ID. Have the data recovered on the other php script and then unserialize it back into an array.
Saludos Gerardo