K,

somebody gave me this option :

I think you'll need to define the variables before you make the query.

$gp = $gp.$i;
$nick = $nickname.$i; etc etc

Then:

... VALUES ('". $gp ."', '". $nick ."', '....

You'll need to do a "for" loop so that it loops through the INSERT the rigt amount of times for however many variables there are..

for ($i=0;$i < $numberOfRows;$i++) {

Hope this helps.

And it looks very possible. I'm going to try it out !!