summaryrefslogtreecommitdiffstats
path: root/application/views/tests/echo-fragment.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/tests/echo-fragment.php')
-rw-r--r--application/views/tests/echo-fragment.php5
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;
+}