D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ksclnmuac
/
www
/
alumni
/
application
/
models
/
user
/
Filename :
ProfileManagement.php
back
Copy
<?php /** * Description of User * * @author Softpro India Pvt. Ltd. */ class ProfileManagement extends CI_Model { //put your code here function updateMailingInfoData($mailingInfoArray,$p_id){ $this->db->where("p_id",$p_id); return $this->db->update("tbl_profile", $mailingInfoArray); } }