Add PHP log to Mysql database [closed]

0

I wanted to create in PHP something like the one I show in the image to add records to the database:

  

Can anyone help me, since I'm new to PHP?

    
asked by anonymous 07.08.2017 / 23:29

1 answer

3

I'll try to give you a little help

1st First

First of all design your database so that php is easier.

2nd Second

With the database you have created, create your connection file ( Connect.php ). Here is a small example:

<?php
// qual é o servidor que estas a te conectar
$servidor = "localhost";

// nome de utilizador para acessar a base de dados
$user = "root";

// password do utilizador
$password = "password15634";

// qual é a base de dados a se conectar
$db = "base_de_dados";

// Cria a conexão e guarda-a numa variável para ser acessível mais tarde
$conn = new mysqli($servidor, $user, $password, $db);

// Verificar se a conexao foi bem sucedida!
if ($conn->connect_error) {
    die("A conexao com a base de dados falhou, mais detalhes: " . $conn->connect_error);
}

3rd Third

With your connection file created, add it to another script (page) php ( index.php ) we will try to insert in the database here the example of index.php     

//Incluimos o nosso arquivo de conexão para que possamos usar a variavel $conn
include('Connection.php');

// Vamos fazer a primeira requisição a base de dados
$stmt = $conn->prepare("INSERT INTO minha_tabela (produto, unid, qtd) VALUES (?, ?, ?)");

// ler mais aqui: http://php.net/manual/en/pdo.prepared-statements.php
// vamos associar os ? com os valores pretendidos
$stmt->bind_param("ssi", $produto, $unid, $qtd);

// Vamos Atribuir valores para que possa ser introduzido na tabela exemplo
$produto = "Pneu de carro";
$unid = "09887234234";
$qtd = 4;

// finalmente executamos a nossa requisição a base de dados
$stmt->execute();

If all goes well, a record will be entered in the% wrapper of these values:

$produto = "Pneu de carro";
$unid = "09887234234";
$qtd = 4;

I hope I have helped,

In order to cover your knowledge in php in the part of connection to the database I suggest you to enter these links: (example links should have better sites there)

07.08.2017 / 23:48