kunitsuji
tsuji****@m-s*****
2008年 7月 11日 (金) 15:00:14 JST
kunitsujiです。 そして、 custmer_edit_confirm.phpのビュー これらでいけるかな? テーブルとかないのでノーテストですが。 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" href="<?=base_url();?>css/bbs.css" type="text/css" /> <script type="text/javascript" src="<?=base_url();?>js/bbs.js"></script> <title>顧客管理</title> </head> <body onload="MM_preloadImages('<?=base_url();?>images/icons/bbs_new_on.jpg') "> <!-- header --> <?=$this->load->view('customer_header');?> <h3><a href="/custmer/">リストへ戻る</a></h3> <h2><?=$msg?></h2> <?php if ($err_flag) { ?> <?php } else { ?> <?=form_open('customer/edit_post');?> <table> <tr> <td>顧客ID</td> <td>[<?=form_prep($cu_id);?>]</td> </tr> <tr> <td>顧客名</td> <td><?=form_prep($cu_name);?></td> </tr> <tr> <td>連絡先</td> <td><?=form_prep($cu_tel);?></td> </tr> <tr> <td>FAX番号</td> <td><?=form_prep($cu_fax);?></td> </tr> <tr> <td>メールアドレス</td> <td><?=form_prep($cu_mail);?></td> </tr> <tr> <td>備考</td> <td><?=nl2br(form_prep($biko));?></td> </tr> <tr> <td>登録日</td><td><?=form_prep($datetime);?></td> </tr> </table> <input type="submit" value="登録する" name="submit" /> <input type="submit" value="戻る" name="submit" /> <input type="hidden" name="cu_name" value="<?=$cu_name;?>" /> <input type="hidden" name="cu_tel" value="<?=$cu_tel;?>" /> <input type="hidden" name="cu_fax" value="<?=$cu_fax;?>" /> <input type="hidden" name="cu_mail" value="<?=$cu_mail;?>" /> <input type="hidden" name="biko" value="<?=$biko;?>" /> <input type="hidden" name="cu_id" value="<?=$cu_id;?>" /> <?=form_close();?> <?php } ?> <!-- footer --> <?=$this->load->view('customer_footer');?> </body> </html>