lo all =)
I need some help regarding the parameter passing !
I have a class called connexion which handle all the connexion stuff. A method in this class called query get the data from the database.
I would like to pass array in an instance of connexion to retrive data from query method !
EX :
$tab[][];
$connexion = new connexion();
$connexion->connect("database stuff");
$connexion->query(&$tab);
I know PHP is like C regarding the adress passing. I put the & but when I do
print("$tab[$i][$j]");
here is the result :
Array[0]Array[1]
Damned ! It sux !
Thx for ur help !
RAF