Ola pessoal não sou conhecedor de PHP no entanto estou tentando conhecer, peguei um script pronto de um portal de noticias, mas esta dando erro no arquivo config.php
a conexao com o banco esta assim:
if ($_SERVER['REMOTE_ADDR'] != "127.0.0.1"){
$cfgServerPort = ""; // MySQL port - leave blank for default port
$cfgServerHost = "localhost"; // MySQL hostname
$cfgServerUser = "userbanco"; // MySQL user
$cfgServerPassword = "senhadobanco"; // MySQL password
$cfgDbDatabase = "portal"; // MySQL database name containing phpSecurePages table
} else {
$cfgServerPort = ""; // MySQL port - leave blank for default port
$cfgServerHost = ""; // MySQL hostname
$cfgServerUser = ""; // MySQL user
$cfgServerPassword = ""; // MySQL password
$cfgDbDatabase = ""; // MySQL database name containing phpSecurePages table
}
$conexao = mysql_connect("$cfgServerHost", "$cfgServerUser", "$cfgServerPassword"); $db = mysql_select_db("$cfgDbDatabase");
// termina conexão com o banco
$sql = mysql_query("SELECT * FROM config WHERE id='1'");
$linha = mysql_fetch_array($sql);
$var = explode(" - ", $linha[tsite]);
o ERRO:
Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/site/public_html/2017/config.php on line 23
a linha 23 é $conexao = mysql_connect("$cfgServerHost", "$cfgServerUser", "$cfgServerPassword"); $db = mysql_select_db("$cfgDbDatabase");
Pergunta
GDonato
Ola pessoal não sou conhecedor de PHP no entanto estou tentando conhecer, peguei um script pronto de um portal de noticias, mas esta dando erro no arquivo config.php
a conexao com o banco esta assim:
if ($_SERVER['REMOTE_ADDR'] != "127.0.0.1"){
$cfgServerPort = ""; // MySQL port - leave blank for default port
$cfgServerHost = "localhost"; // MySQL hostname
$cfgServerUser = "userbanco"; // MySQL user
$cfgServerPassword = "senhadobanco"; // MySQL password
$cfgDbDatabase = "portal"; // MySQL database name containing phpSecurePages table
} else {
$cfgServerPort = ""; // MySQL port - leave blank for default port
$cfgServerHost = ""; // MySQL hostname
$cfgServerUser = ""; // MySQL user
$cfgServerPassword = ""; // MySQL password
$cfgDbDatabase = ""; // MySQL database name containing phpSecurePages table
}
$conexao = mysql_connect("$cfgServerHost", "$cfgServerUser", "$cfgServerPassword"); $db = mysql_select_db("$cfgDbDatabase");
// termina conexão com o banco
$sql = mysql_query("SELECT * FROM config WHERE id='1'");
$linha = mysql_fetch_array($sql);
$var = explode(" - ", $linha[tsite]);
o ERRO:
Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/site/public_html/2017/config.php on line 23
a linha 23 é $conexao = mysql_connect("$cfgServerHost", "$cfgServerUser", "$cfgServerPassword"); $db = mysql_select_db("$cfgDbDatabase");
podem me ajudar???
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.