From 83483a1826d1d05e2f9733746f35fef1939b8c0a Mon Sep 17 00:00:00 2001 From: raylu Date: Sat, 2 Jul 2011 16:51:32 -0700 Subject: lowercase --- views/search/index.html.php | 50 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 views/search/index.html.php (limited to 'views/search') diff --git a/views/search/index.html.php b/views/search/index.html.php new file mode 100644 index 0000000..91bc1fa --- /dev/null +++ b/views/search/index.html.php @@ -0,0 +1,50 @@ +'; + foreach ($headers as $k => $v) + { + echo "$v"; + } + echo "\n"; + + + foreach ($data as $item) + { + echo ''; + foreach($headers as $key => $value) + { + echo ''; + echo $item->$key; + echo ''; + } + echo "\n"; + } +} +?> + +
+
+

Search options

+
+form->create(null, array('method' => 'get')); ?> + form->field('search', array('type' => 'textbox', 'class' => 'sidebar-search', 'style' => 'width:200px')); ?> + form->label('type', 'For:'); ?> + form->select('type', array('Anime' => 'Anime', + 'Manga' => 'Manga', + 'Kdrama' => 'Kdrama')); ?> + form->submit('Search', array('style' => 'width: 100px')); ?> +form->end(); ?> +
+
+

Search Results

+
+ + +
+Paginator->paginate(array('separator' => '', 'action' => 'index/anime')); ?> +
+
+
\ No newline at end of file -- cgit v1.2.3