tags:

views:

175

answers:

1

What is the php code please to SET GLOBAL group_concat_max_len=15000 in MySql ? or SET SESSION group_concat_max_len=15000

+1  A: 

Could you just do a query?

$query = 'SET GLOBAL group_concat_max_len=15000';

mysql_query($query);
alex
Thanks Alex. Mike