-1
I need to insert a file .pdf
by page and write in the database only the file path. The user uploads and writes. The file goes to folder specifies and the Mysql database only gets the path.
Follows the beginning of the project:
<?php
// Conexão e seleção do banco
$host = 'localhost';
$user = 'root';
$pass = '';
$con = mysql_connect($host,$user,$pass); // Marcando conexão
$db = 'consultapagina'; // Marcando seleção
mysql_select_db($db,$con) or print mysql_error(); // Executando conexão e seleção
// Lendo os campos do .html
$link = $_POST['link'];
$titulo = $_POST['titulo'];
$descricao = $_POST['descricao'];
// ~~~~~~~~~~~~~~~~~~~~~~~~~~
// Codigo de inserção
$sql = "INSERT INTO pagina (link, titulo, descricao) VALUES ('$link', '$titulo', '$descricao')";
// Converte e Executa a query
$inserir = mysql_query($sql);
// Resultado para o .html
if ($inserir) {
echo "Link inserido com sucesso!";
} else {
echo "Não foi possível inserir link, tente novamente. Se o erro persistir contate o Administrador do Sistema.";
// Exibe dados sobre o erro:
echo "Dados sobre o erro:" . mysql_error();
}
?>
How do I save the path to Mysql when the user clicks on record?
Hello, Willian. What would be your doubt? It would be nice [Dit] the question and explain where is your difficulty, so that we can help. In the following link there are some tips on how to improve the question: [Ask].
– Bacco
@Bacco I edited the question. My difficulty is already in the text.
– Willian Coqueiro