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
2009-07-07 22:53:52
Thanks Alex. Mike
2009-07-11 15:00:14