1 / 10

Conexão com Banco de Dados

Conexão com Banco de Dados. <? php $ conexao = mysql_connect (" localhost "," root ",“aluno") or die ("Não foi possivel conectar"); $ db = mysql_select_db ("contato",$ conexao ) or die ("Não foi possivel selecionar o Banco de Dados"); ?>. include. include(" conexao . php ");.

wilma
Download Presentation

Conexão com Banco de Dados

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Conexão com Banco de Dados

  2. <?php $conexao = mysql_connect("localhost","root",“aluno") ordie ("Não foi possivel conectar"); $db = mysql_select_db("contato",$conexao) ordie ("Não foi possivel selecionar o Banco de Dados"); ?>

  3. include include("conexao.php");

  4. <formmethod="get" action="gravarDados.php"> Nome:<input type="text" name="txtNome"><br> Telefone:<input type="text" name="txtTelefone"><br> <input type="submit" value="Cadastrar"> </form>

  5. mysql_query($sql) $sql = "insertinto contato values($codigo,'$nome','$telefone')"; echo $sql; mysql_query($sql);

  6. <?php include("conexao.php"); $nome = $_GET["txtNome"]; $telefone = $_GET["txtTelefone"]; $sql = "insertinto contato values(null,'$nome','$telefone')"; echo $sql; mysql_query($sql); ?>

  7. mysql_num_rows($sql) $numeroRegistros = mysql_num_rows($sql);

  8. mysql_result(sql,posição,campo) mysql_result($sql, $i, 'idcontato');

  9. Exercício • Crie a seguinte tabela no MySql: CREATE TABLE cliente( idClientesmallintprimarykeyauto_increment, nome varchar(40), telefone varchar(13), enderecovarchar(50), nascimento date )

  10. Crie um formulário para cadastrar os dados do cliente (nome, telefone, endereço e nascimento) • Faça a inserção dos dados (INSERT INTO) • Faça a exibição de todos os dados da tabela (SELECT)

More Related