root/trunk/app/views/ecourses/view.ctp

Revision 541, 0.6 kB (checked in by aarkerio, 6 months ago)

New Try

Line 
1<?php
2//die(var_dump($data));
3echo $html->div(null, $data["Catfaq"]["title"].'\' FAQ', array('style'=>'font-size:18pt;padding:5px;boder:1px solid #c0c0c0'));
4
5foreach ($data["Faq"] as $v):
6   echo '<div style="border:1px dotted gray;padding:4px;margin-bottom:15px">';
7        echo '<p style="font-weight:bold;">' .  $v['question'] . '</p>';
8        echo '<p>' .  $v['answer']    . '</p>';
9        echo '<p>' . $html->link($html->image('static/arrow_top.gif', array("alt"=>"Go top", "title"=>"Go top")), '#main', null, null, false) . '</p>';
10  echo '</div>';
11endforeach;
12?>
Note: See TracBrowser for help on using the browser.