Ver Mensaje Individual
  #3 (permalink)  
Antiguo 05/08/2003, 15:58
Avatar de RootK
RootK
Moderador
 
Fecha de Ingreso: febrero-2002
Ubicación: México D.F
Mensajes: 8.004
Antigüedad: 22 años, 9 meses
Puntos: 50
Gracias Mithrandir, ya lo solucione..de todas formas lo que hice fue manejar un ArraysLiat (ASP.Net) pongo el código por si a alguien algun día lo necesita.

Código PHP:
Public Function GetArrays() As ArrayList
...
...
Dim _array As New ArrayList() 
 
_array.Add(arr3'aqui lleno el array 1
 _array.Add(arr4) ' 
y aqui el 2

Return _array

 y para recogerlos
:

Dim arr1(), arr2() As String
arr1 
g.GetArrays(0)
arr2 g.GetArrays(1


saludos