uploadTo = PD . "\\public\\images\\"; //$this->uploadTo = PD . '/public/images/'; $this->allowFileType = array('jpg','png','jpeg','gif'); } /* Process the uploaded image and store in database */ public function insertImage() { //$sql = "INSERT INTO ImageStore(ImageId,Image) VALUES('$this->image_id','" . mysql_escape_string(file_get_contents($tmp_image)) . "')"; //$fp=addslashes(file_get_contents($_FILES['image']['tmp_name'])); //will store the image to fp //$query = "CALL insert_loyalty_member_image_proc('{$fileName}','{$fp}');"; $query .= "CALL insert_loyalty_member_image_proc (" . $this->memberId . ", " . $this->imageBlob . ")"; //return var_dump($query); $rowCount = $this->processImage($query); return $rowCount; } }