D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ksclnmuac
/
public_html
/
alumni
/
application
/
models
/
admin
/
Filename :
PostManagement.php
back
Copy
<?php /** * Description of User * * @author Softpro India Pvt. Ltd. */ class PostManagement extends CI_Model { //put your code here function updatePost($postDetails) { $this->db->where("pst_id", $postDetails["pst_id"]); return $this->db->update("tbl_post", $postDetails); } }