good catch....fixed that and still not getting any output from render().
I am getting my 3 rows in $dataSet, but render() is not displaying anything, nor am I getting any PHP error messages. error_reporting is set to E_ALL in my ini.
output from print_r($dataSet):
Array
(
[0] => Array
(
[userid] => jblow
[fname] => Joe
[lname] => Blow
)
[1] => Array
(
[userid] => jdoe
[fname] => John
[lname] => Doe
)
[2] => Array
(
[userid] => gijoe
[fname] => GI
[lname] => Joe
)
)
I am using IIS & PHP 5.0.2. I'm wondering if maybe PEAR wasn't set up correctly, although you would think I would get some sort of error message. Here's the setup:
-
PEAR Base System is under c:\php\PEAR-1.3.4
Structures_DataGrid package is under c:\php\includes\Structures\DataGrid
include_path = ".;c:\php\includes;c:\php\PEAR-1.3.4"