Olá pessoal gostaria de saber como faço para configurar conexão do BD dentro do servidor na internet... As configurações q estão feitas e para servidor pessoal no pc.
Eu preciso configurar para servidor online da internet...
mysql_connect
function settings($server,$port=3306,$user,$pass)
{
$this->theserver="localhost:3306";
$this->port="3306";
$this->username="root";
$this->password="phppwd";
$this->error="";
}
function pconnect() {
$this->error="";
$this->db=mysql_pconnect ("localhost", "root", "phppwd") or $this->error="I cannot make/use a persistant connection to the database.";
}
function connect() {
$this->error="";
$this->db=mysql_connect ("localhost", "root", "phppwd") or $this->error="I cannot connect to the database.";
}
function selectdb($thedb) {
$this->error="";
mysql_select_db ("lyrics_1") or $this->error="I cannot select that database!";
if (($this->error == "") OR ($this->error == NULL))
Pergunta
Guest zerocall
Olá pessoal gostaria de saber como faço para configurar conexão do BD dentro do servidor na internet... As configurações q estão feitas e para servidor pessoal no pc.
Eu preciso configurar para servidor online da internet...
mysql_connect
function settings($server,$port=3306,$user,$pass)
{
$this->theserver="localhost:3306";
$this->port="3306";
$this->username="root";
$this->password="phppwd";
$this->error="";
}
function pconnect() {
$this->error="";
$this->db=mysql_pconnect ("localhost", "root", "phppwd") or $this->error="I cannot make/use a persistant connection to the database.";
}
function connect() {
$this->error="";
$this->db=mysql_connect ("localhost", "root", "phppwd") or $this->error="I cannot connect to the database.";
}
function selectdb($thedb) {
$this->error="";
mysql_select_db ("lyrics_1") or $this->error="I cannot select that database!";
if (($this->error == "") OR ($this->error == NULL))
{
$this->table = "lyrics";
}
}
Link para o comentário
Compartilhar em outros sites
1 resposta 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.