Jump to content
Fórum Script Brasil
  • 0

Class, Crinado Conexão Mysql


kafunga

Question

aew galera, estou querendo aprofundar em class e preciso da ajuda de vocês ok!?

eu criei esta class de conxõ com banco de dados mysql:

<?php

class conectar {

var $host;

var $user;

var $senha;

var $banco;

function conectar()

{

$this->banco = "";

$this->host = "localhost";

$this->user = "root";

$this->senha = "";

        }

        function connect($banco, $host, $user, $senha)

{

                mysql_conect($this->host, $this->user, $this->senha) or die (mysql_error());

  mysql_select_db ($this->banco) or die(mysql_error());

}

}

?>

p criar o objeto:

$conectar = new conectar();

mais isto n faz a conexão! o que pode ser, tem algo errado na class!? testei varias vezes e alterei varias vezes, mais n conecta!!]

ajuda ai por favor!

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

continua n fazendo a conexão!:

eu alterei algumas coisas, mais continua dando no mesmo:

<?php

class conectar {

var $host;

var $user;

var $senha;

var $banco;

function conectar()

{

$this->banco = "";

$this->host = "localhost";

$this->user = "root";

$this->senha = "";

        }

        function setBanco ($banco)

{

  $this->banco = $banco;

}

function connect($banco)

{

                mysql_conect($this->host, $this->user, $this->senha) or die (mysql_error());

  mysql_select_db ($this->banco) or die(mysql_error());

}

}

?>

$con = new conectar();

$con->setBanco("helpdesk");

???tem error?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...