hola amigos.
como puedo agregar una acción mas, en un solo archivo, es decir por medio de IF ELSE algo así como indica el código siguiente
en este archivo hay un UPDATE y INSERT, y necesito que se agregue un DELETE
Código PHP:
Ver original<?php
{
$output = '';
$message = '';
if($_POST["students_id"] != '')
{
$query = "UPDATE students SET name='$name' WHERE id='".$_POST["students_id"]."'";
$message = 'Data Updated';
}
else
{
$query = "INSERT INTO students(name) VALUES('$name')";
$message = 'Data Inserted';
}
// AGREGAR AQUI UN DELETE
{
$output .= '<label class="text-success">' . $message . '</label>';
$select_query = "SELECT * FROM students ORDER BY id DESC";
$output .= '
<table class="table">
<tr>
<th width="70%">Name</th>
</tr>
';
{
$output .= '
<tr>
<td>' . $row["name"] . '</td>
</tr>
';
}
$output .= '</table>';
}
echo $output;
}
?>