Olá ao tentar conectar o bd no servidor recebo essa mensagem :
Warning: include(/var/www/html/showdospes.com.br/web../../funcao/conecta.php): failed to open stream: No such file or directory in /var/www/html/showdospes.com.br/web/index.php on line 74
Warning: include(): Failed opening '/var/www/html/showdospes.com.br/web../../funcao/conecta.php' for inclusion (include_path='.:/usr/share/pear') in /var/www/html/showdospes.com.br/web/index.php on line 74
Fatal error: Call to undefined function conecta() in /var/www/html/showdospes.com.br/web/index.php on line 75
Pergunta
Clayton
Olá ao tentar conectar o bd no servidor recebo essa mensagem :
Warning: include(/var/www/html/showdospes.com.br/web../../funcao/conecta.php): failed to open stream: No such file or directory in /var/www/html/showdospes.com.br/web/index.php on line 74
Warning: include(): Failed opening '/var/www/html/showdospes.com.br/web../../funcao/conecta.php' for inclusion (include_path='.:/usr/share/pear') in /var/www/html/showdospes.com.br/web/index.php on line 74
Fatal error: Call to undefined function conecta() in /var/www/html/showdospes.com.br/web/index.php on line 75
mas local ele funciona normalmente:
<?php
function conecta( ){
if(!defined("HOST")){
define('HOST','http://showdospes.com.br');
}
if(!defined("BD")){
define('BD','bolabola');
}
if(!defined("USER")){
define('USER','eueueu');
}
if(!defined("PASS")){
define('PASS',' 123456');
}
try {
$conn = new PDO('mysql:host='.HOST.';dbname='.BD.'', ''.USER.'', ''.PASS.'');
$conn->exec("SET NAMES 'utf8'");
}
catch(PDOException $erro){
echo $erro->getMessage();
}
return $conn;
}
Onde está o erro ?
Link para o comentário
Compartilhar em outros sites
2 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.