@@ 30-45 (lines=16) @@ | ||
27 | <?=$pagination?> |
|
28 | ||
29 | <!-- ここから、php endforeachまで、記事を表示するループです。 --> |
|
30 | <?php foreach($query->result() as $row): ?> |
|
31 | <div class="article"> |
|
32 | <h1 class="f_bbs_titile"><a id="id<?=html_escape($row->id);?>" name="id<?=html_escape($row->id);?>">[<?=html_escape($row->id);?>]</a> |
|
33 | <?=html_escape($row->subject);?></h1> |
|
34 | <div class="f_bbs_coment"><?=html_escape($row->name);?> |
|
35 | <?=html_escape($row->datetime);?> </div> |
|
36 | <div class="f_bbs_coment"><?=nl2br(html_escape($row->body));?></div> |
|
37 | <!-- 記事を削除するためのフォームを表示します。 --> |
|
38 | <div class="f_bbs_delete"> |
|
39 | <?=form_open('bbs/delete/'. $row->id);?> |
|
40 | 削除パスワード: <input type="text" name="password" size="12" value="" /> |
|
41 | <input type="submit" value="削除" /> |
|
42 | <?=form_close();?> |
|
43 | </div><!-- end of f_bbs_delete --> |
|
44 | </div><!-- end of article --> |
|
45 | <?php endforeach; ?> |
|
46 | ||
47 | <?=$pagination?> |
|
48 |
@@ 19-36 (lines=18) @@ | ||
16 | <?=$pagination?> |
|
17 | </table> |
|
18 | <!-- ここから、php endforeachまで、記事を表示するループです。 --> |
|
19 | <?php foreach($query->result() as $row): ?> |
|
20 | <table width="100%" border="0" cellspacing="0" cellpadding="0"> |
|
21 | <tr><td bgcolor="#BBBBFF"><a name="id<?=html_escape($row->id);?>">[<?=html_escape($row->id);?>]</a> |
|
22 | <?=html_escape($row->subject);?></td></tr> |
|
23 | <tr> |
|
24 | <td><?=html_escape($row->name);?> <?=html_escape($row->datetime);?></td> |
|
25 | </tr> |
|
26 | <tr><td bgcolor="#EEEEEE"><?=nl2br(html_escape($row->body));?></td></tr> |
|
27 | <!-- 記事を削除するためのフォームを表示します。 --> |
|
28 | <tr><td><?=form_open('bbs/delete/'. $row->id, ['accept-charset' => 'Shift_JIS']);?> |
|
29 | 削除パスワード:<br> |
|
30 | <input type="text" name="password" value=""> |
|
31 | <input type="submit" value="削除"> |
|
32 | <?=form_close();?></td></tr> |
|
33 | <tr><td> </td></tr> |
|
34 | <?=$pagination?> |
|
35 | </table> |
|
36 | <?php endforeach; ?> |
|
37 | <hr> |
|
38 | <a href="#top">上段に戻る</a> |
|
39 | </body> |