Mysql
 sql >> Database >  >> RDS >> Mysql

Come aggiornare il file PDF che è già stato aggiunto al database in PHP?

$_POST['contractupload'] non funzionerà. Il nome del file è solo in $_FILES . Dovresti elaborarlo allo stesso modo in insert.php .

Ho anche mostrato come riscrivere il codice utilizzando un'istruzione preparata anziché la sostituzione di variabili.

E dovresti usare move_uploaded_file() invece di copy() . Vedi Differenza tra copy e move_uploaded_file .

<?php

// Include config file
require_once "new_db_connect.php";

if($_POST) {
    $fname = $_POST['fname'];
    $lname = $_POST['lname'];
    $embg = $_POST['embg'];
    $contract_file = basename($_FILES['contractupload']['name']);
    $contract_path = "files/contracts/$contract_file";

    move_uploaded_file($_FILES['contractupload']['tmp_name'], $contract_path);

    $id = $_POST['id'];

    // UPDATE the info
    $stmt = $connect->prepare("UPDATE addemployees SET fname = ?, lname = ?, embg = ?, contractupload = ? WHERE id = ?");
    $stmt->bind_param("ssssi", $fname, $lname, $embg, $contract_file, $id);
    if($stmt->execute()) {
        header("location: employees.php");
    } else {
        echo "Erorr while updating record : ". $stmt->error;
    }

    $connect->close();

}

?>