Error connecting to MySQL with CodeIgniter

0

I try to connect to MySQL but I get the following error

  

An uncaught Exception was encountered

     

Type: Error

     

Message: Call to undefined function mysql_pconnect ()

     

Filename: > C: \ xampp \ htdocs \ CodeIgniter \ system \ database \ drivers \ mysql \ mysql_driver.php

     

Line Number: 135

     

Backtrace:

     

File: C: \ xampp \ htdocs \ CodeIgniter \ index.php   Line: 315   Function: require_once

How can I correct this error? I would really appreciate it

    
asked by Rodrigo Arenas 16.10.2017 в 21:03
source

1 answer

3

The ones you have to use is the mysqli library, in the database.php.

the dbdriver should like that

$db['default']['dbdriver'] = 'mysqli'; 
    
answered by 16.10.2017 / 23:20
source