maiswww 2 Denunciar post Postado Maio 5, 2015 Bom dia. Estou tentando resolver o seguinte problema: ( ! ) Warning: mysqli_select_db() expects exactly 2 parameters, 1 given in C:\wamp\www\nenem\includes\conexao.php on line 22 Call Stack # Time Memory Function Location 1 0.0010 243344 {main}( ) ..\index.php:0 2 0.0010 247224 include( 'C:\wamp\www\nenem\includes\conexao.php' ) ..\index.php:2 3 0.0010 248008 mysqli_select_db ( ) ..\conexao.php:22 ( ! ) Warning: mysqli_error() expects exactly 1 parameter, 0 given in C:\wamp\www\nenem\includes\conexao.php on line 22 Call Stack # Time Memory Function Location 1 0.0010 243344 {main}( ) ..\index.php:0 2 0.0010 247224 include( 'C:\wamp\www\nenem\includes\conexao.php' ) ..\index.php:2 3 0.0030 248488 mysqli_error ( ) ..\conexao.php:22 Segue o código: <? /** * conexao.php * */ $host = 'localhost'; $usuario = 'maiswww'; $senha = ''; $banco = 'proj_final'; # conectando ao servidos do banco de dados mysqli_connect_errno($host, $usuario, $senha); # selecionando o banco de dados mysqli_select_db($banco) or die (mysqli_error() ); ?> Alguém pode me ajudar a esclarecer tal erro. Obrigado. Compartilhar este post Link para o post Compartilhar em outros sites
Dan Borges 26 Denunciar post Postado Maio 5, 2015 Então, o erro informa que o "mysqli_select_db()" espera dois parâmetros, a conexão e o nome do banco. http://www.w3schools.com/php/func_mysqli_select_db.asp Bem como o mysqli_error() necessita de um parâmetro, a conexão: http://www.w3schools.com/php/func_mysqli_error.asp Compartilhar este post Link para o post Compartilhar em outros sites