Pastefi mark
Untitled
/2b88693a
Paste view
HTML PUBLIC 40 views
2b88693a
2025-06-03 12:39:49
        public function create() {
            $content = $this->input->post('content');
            $expire = strtoupper($this->input->post('expire')); // Normalize to uppercase

            // Get password and hash it
            $password = $this->input->post('password');
            $hashed_password = null;

            if (!empty($password)) {
                $hashed_password = password_hash($password, PASSWORD_DEFAULT);
            }
        
            if (!$content) {
                show_error("Turinys tuščias.");
            }

Comments (0)

Log in to leave a comment.

No comments yet.