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

Inserimento di dati di array di moduli in MySQL con PHP

L'uso dell'oggetto PDO renderebbe tutto più semplice, mysql_ è comunque legacy:

$db = new PDO($hostname,$username,$password);


$qry = "INSERT INTO table (
            Date,
            FirstName,
            LastName,
            StraightHours,
            OvertimeHours,
            PremiumHours,
            TotalHours,
            PerDiem
        )
        VALUES (:date, :firstname, :lastname, :straighthours, :overtimehours, :premiumhours, :totalhours, :perdiem)"; // colon variables will be bound to actual variable

$statement = $db->prepare($query); //prevents injection

// binds variables to place holder in query
$statement->bindValue(':firstname', $firstname);
$statement->bindValue(':lastname', $lastname);
$statement->bindValue(':straighthours', $straighthours);
$statement->bindValue(':overtimehours', $overtimehours);
$statement->bindValue(':premiumhours', $premiumhours);
$statement->bindValue(':totalhours', $totalhours);
$statement->bindValue(':perdiem', $perdiem);

$statement->execute();
$statement->closeCursor();

puoi eseguire ulteriori controlli di input con php prima di passare qualsiasi cosa a sql tramite:

trim(strip_tags(htmlentities($firstname)));

PDO è molto più semplice da usare e comprendere IMO

AGGIORNAMENTO:

tutorial su DOP

AGGIORNAMENTO #2:

Per funzionalità aggiuntive con gli array al giorno puoi fare:

<input type="text" name="firstname1">

// do this for all fields then
$workingday1 = array();
$workingday1['firstname'] = $_GET['firstname1'];
// etc. for all the other fields

Quindi puoi accedere al campo tramite:

$workingday1 = $_GET['workingDay1']; // or post or however you want to pass it
$firstname = $workingday['firstname'];

Dopodiché puoi sfoltire il tuo database come preferisci. Puoi avere una singola tabella con tutti i valori e modificare le tue selezioni per visualizzare per dipendente o giorno o w/e. Puoi anche avere una tabella per ogni dipendente e quindi prendere da quelle tabelle e visualizzare i dati come preferisci.