![]() |
Sergey Kornilov admin 11/9/2013 |
PHPRunner limits number of retrieved records on its own. I.e. if you have 20 records on the page PHPRunner will add LIMIT 20 to SQL query automatically. To see how it works turn on SQL debug mode: http://xlinesoft.com/phprunner/docs/debugging_tips.htm |
S
|
Stucco 11/10/2013 |
Hi, SELECT
|
S
|
Stucco 11/17/2013 |
Hi, SELECT
// Use only the first field3 value from the CSV resulting from the group_concat of field3 matches
|
S
|
Stucco 11/17/2013 |
In Events -> Export -> Before Export Record I added the following // Use only the first field3 value from the CSV resulting from the group_concat of field3 matches
$values["field3"] = (strpos($values["field3"], ',') !== FALSE ? substr($values["field3"], 0, strpos($values["field3"], ",")):$values["field3"]); |