Lines Matching defs:row
44 foreach ($result as $i => $row) {
50 echo $this->row($row, $pid);
62 $row = '';
65 $row .= $this->escape('pid');
66 $row .= ',';
70 $row .= $this->escape($col->getLabel());
71 $row .= ',';
73 return rtrim($row, ',') . "\r\n";
77 * Create one row of data
80 * @param string $pid pid of this row
83 protected function row($values, $pid)
85 $row = '';
87 $row .= $this->escape($pid);
88 $row .= ',';
97 $row .= $this->escape($val);
98 $row .= ',';
101 return rtrim($row, ',') . "\r\n";