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

PHP - passa il valore nascosto in jquery

Non c'è bisogno di usare un input nascosto, puoi semplicemente usare il button tag invece:

<?php while($row = mysqli_fetch_array($result)) { ?>
    <tr>
        <td align="center"><?php echo $row['dept_ID']; ?></td>
        <td align="center"><?php echo $row['dept_name']; ?></td>
        <td>
            <button type="submit" name="departmentID" class="buttonsPromptConfirmDeleteDepartment" value="<?php echo $row['dept_ID']; ?>">Delete</button>
        </td>
    </tr>
<?php } ?>

Ovviamente, nello script PHP che esegue l'elaborazione del modulo, accedi all'indice POST come faresti normalmente:

$id = $_POST['departmentID'];
// some processes next to it

Nota:non dimenticare il <form> tag.

Nota aggiuntiva:non dimenticare di utilizzare dichiarazioni preparate :

$sql = 'DELETE FROM department WHERE dept_ID = ?';
$stmt = $dbc->prepare($sql);
$stmt->bind_param('i', $id);
$stmt->execute();
// some idea, use error checking when necessary
// $dbc->error