07.05
php
saved
Kinicky
Note
Kinicky did not leave a note
Kinicky did not leave a note
- <--!app\models\post.php-->
- <?php
- class Post extends AppModel
- {
- var $name = 'Post';
- }
- ?>
- <--!app\controllers\posts_controller.php-->
- <?php
- class PostsController extends AppController
- {
- var $name = 'Posts';
- function index()
- {
- $this->set('posts', $this->Post->findAll());
- }
- }
- ?>
- <--!/app/views/posts/index.thtml-->
- <h1>Blog posts</h1>
- <table>
- <tr>
- <th>Id</th>
- <th>Title</th>
- <th>Created</th>
- </tr>
- <?php foreach ($posts as $post): ?>
- <tr>
- <td>
- </td>
- </tr>
- <?php endforeach; ?>
- </table>
Parsed in 0.046 seconds, using GeSHi 1.0.7.14