8 lines
194 B
PHP
Executable File
8 lines
194 B
PHP
Executable File
<?php
|
|
// this is our event id
|
|
// We need to find this event in the database and delete it
|
|
$id = $_POST['id'];
|
|
|
|
// but this is a test project so we return true
|
|
return true;
|
|
?>
|