mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
16 lines
307 B
PHP
16 lines
307 B
PHP
|
<?
|
||
|
|
||
|
$updated = '1';
|
||
|
|
||
|
$sql = "DELETE FROM `services` WHERE service_id = '" . $_POST['service']. "'";
|
||
|
|
||
|
$query = mysql_query($sql);
|
||
|
$rows = mysql_affected_rows();
|
||
|
$affected = $rows . " records affected";
|
||
|
|
||
|
$message .= $message_break . $rows . " service deleted!";
|
||
|
$message_break .= "<br />"
|
||
|
|
||
|
|
||
|
?>
|