diff options
Diffstat (limited to 'application/views')
-rw-r--r-- | application/views/tests/echo-fragment.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/application/views/tests/echo-fragment.php b/application/views/tests/echo-fragment.php new file mode 100644 index 000000000..f8c26661f --- /dev/null +++ b/application/views/tests/echo-fragment.php @@ -0,0 +1,5 @@ +<?php +echo "listing ".count($items)." items:\n"; +foreach ($items as $item) { + echo $item; +} |