Jump to content

edit form is not updating its add as new row


mdvignesh

Recommended Posts

public function editContact( $c_id = null ) {
		//echo $c_id;
		
		if( !$c_id ) {
			throw new NotFoundException( __( 'Invalid Post' ) );
		}
		
		$contact = $this->Contact->findBycId( $c_id );
		if( !$contact ) {
			throw new NotFoundException( __( 'Invalid Post' ) );
		}
		//$id = $c_id;
		if( $this->request->is( array( 'post', 'put' ) ) ) {
			$this->Contact->cid = $c_id;
			
			if( $this->Contact->save( $this->request->data ) ) {
				$this->Session->setFlash( __( 'Data Updated' ) );
				return $this->redirect( array( 'action' => 'index' ) );
			}
			$this->Session->setFlash( __( 'Unable To update Data!' ) );
		}
		
		if( !$this->request->data ) {
			$this->request->data = $contact;
		}
	}

edit action in my controller

 

in my contacts table I'm having 'c_id' instead of 'id'

 

I also add this public $primaryKey = 'c_id'  in Contact.php model file

But still I get

column not found unknown column contact.id in where clause

 

 

Edited by mdvignesh
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.