3 function handle_request($id, $input)
5 $input = json_decode($input, true);
7 $db = new SQLite3('database.sqlite');
8 $db->exec("UPDATE especie SET nombre='{$input['nombre']}' where id={$id}");
13 'nombre' => $input['nombre'],
16 echo json_encode($especie);