ユーザーがデータベースにメッセージを追加すると、メッセージの表示ページに戻されるページを作成しています(ページに関連メッセージのリストを表示します)。ただし、送信をクリックしてメッセージを追加すると、パラメーターも URL に渡されません。
public function add_admin($id=null){
//allows user to add a new message to a dispute
$this->set('title_for_layout', 'Dispute Information');
$this->set('stylesheet_used', 'homestyle');
$this->set('image_used', 'eBOXLogoHome.png');
$this->layout='home_layout';
//gets messages where Message.dispute_id=$id
$dispute=$this->Message->field('dispute_id', array('dispute_id'=>$id));
//sets the variables
$this->set('dispute', $dispute);
//$sets the variable $user to User.id
$user=$this->Auth->User('id');
//sets the variable
$this->set('user',$user);
//if the request posts to the database
if($this->request->is('post')){
//create an instance of message in the database
$this->Message->create();
//if the message saves
if ($this->Message->save($this->request->data)) {
//redirect the user to Messages/viewMessage_admin
$this->redirect( array('controller' => 'Messages','action' => 'viewMessage_admin',$id));
}
}
$this->set('id',$id);
}
public function viewMessage_admin($id=null){
//allows users to view all messages related to a dispute
$this->set('title_for_layout', 'Dispute Information');
$this->set('stylesheet_used', 'homestyle');
$this->set('image_used', 'eBOXLogoHome.png');
$this->layout='home_layout';
$this->set('dispute_id',$id);
debug($id);
//find all messages where Message.dispute_id=$id
$Messages=$this->Message->find('all',array(
'conditions'=>array('dispute_id'=>$id)));
//find User details where user.id=message.user_id
$Username=$this->User->find('all', array(
'conditions'=>array(
'User.id'=>'Message.user_id')));
//get messages where message.dispute_id=$id
$dispute=$this->Message->field('dispute_id', array('dispute_id'=>$id));
//sets the variables
$this->set('dispute', $dispute);
$this->set('username', $Username);
$this->set('dispute_id',$id);
$this->set('message',$Messages);
}
これが私のフォームのコードです
<table id="data">
<tr>
<th>Please add your message below.</th></tr>
<tr><td>
<?php echo $this->Form->create('Message', array('action'=>'add_admin')); ?>
<?php echo $this->Form->inpute('user_id', array('type'=>'hidden', 'value'=>$user)); ?>
<?php echo $this->Form->input('message',array('label'=>false)); ?>
</td></tr><tr><td>
<?php echo $this->Form->hidden( 'dispute_id', array( 'value' => $dispute ) ); ?>
<?php echo $this->Form->end('Submit'); ?></td></tr>
</table>