Jump to content

masputhut

New Members
  • Posts

    1
  • Joined

  • Last visited

masputhut's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hello all members, I want to ask about PHP Native Sorry I'm new to PHP, I created an input form using Edit Text and Combobox But failed in saving the following is the code that I use The problem is I can't get the id from the combobox and it always fails to save it, :( function save_upload(){ extract($_POST); // var_dump($_FILES); $data = " title ='$title' "; $data .= ", description ='".htmlentities(str_replace("'","’",$description))."' "; $data .= ", user_id ='{$_SESSION['login_id']}' "; $data .= ", file_json ='".json_encode($fname)."' "; $data = " DocType_id ='$combodoctype' "; $data = " Dept_ID ='$combo4' "; if(empty($id)){ $save = $this->db->query("INSERT INTO documents set $data "); }else{ $save = $this->db->query("UPDATE documents set $data where id = $id"); } if($save){ return 1; } } admin_class.txt ajax.txt newdocument.txt
×
×
  • 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.