Created
November 11, 2010 13:31
-
-
Save jlebrech/672508 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$this->db->where("id",$contact->heardfrom_id); | |
$this->db->from("heardfrom"); | |
$heard_res = $this->db->get()->row(); | |
// Followed by | |
$this->db->set("status_id","3"); | |
$this->db->where("contact.id",$contact->id); | |
$this->db->update("contacts"); | |
// do i have to clear anything before i call it? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment