Ответы пользователя по тегу PHP
  • Почему шифруются данные в БД mysql?

    @iiideb Автор вопроса
    Пишу роботов на html
    Заменил
    Было
    $params = [
                ':user_name'=> $this->user_name,
                ':user_email'=> $this->user_email,
                ':user_password'=> $this->user_password,
                ':user_profile'=> $this->user_profile,
                ':user_status'=> $this->user_status,
                ':user_created_on'=> $this->user_created_on,
                ':user_verification_code'=> $this->user_verification_code
            ];
            $statement = $this->connect->prepare($query);
    
            foreach ($params as $key => $value) {
                $statement->bindParam($key, $value);
            }


    На
    Стало
    $statement->bindParam(':user_name', $this->user_name);
            $statement->bindParam(':user_email', $this->user_email);
            $statement->bindParam(':user_password', $this->user_password);
            $statement->bindParam(':user_profile', $this->user_profile);
            $statement->bindParam(':user_status', $this->user_status);
            $statement->bindParam(':user_created_on', $this->user_created_on);
            $statement->bindParam(':user_verification_code', $this->user_verification_code);


    Почему bindParam($key, $value) не работал в цикле foreach
    Ответ написан