Hi there!
This is a query of a PHP script I wrote which is supposed to return the number of rows for each different object present in the field nammed "list"
$query="SELECT list, count( * ) AS n FROM $table GROUP BY list HAVING ( n > 1 )";
//I don't know how to write the following
print (
// ? ? ? ? ?
);
The result returned by this query is, FOR EXAMPLE, something like this
list n
ai 72
bg 325
he 127
etc...
I want to send this result to my Flash file
&ai=72
&bg=325
&he=127
etc...
but I don't know to write it the right way !!!
Many thanks in advance for your help !