D. srv / pasatiempo-modifica.php

1<?php
2
3require_once __DIR__ . "/../lib/php/ejecutaServicio.php";
4require_once __DIR__ . "/../lib/php/recuperaIdEntero.php";
5require_once __DIR__ . "/../lib/php/recuperaTexto.php";
6require_once __DIR__ . "/../lib/php/validaNombre.php";
7require_once __DIR__ . "/../lib/php/update.php";
8require_once __DIR__ . "/../lib/php/devuelveJson.php";
9require_once __DIR__ . "/Bd.php";
10require_once __DIR__ . "/TABLA_PASATIEMPO.php";
11
12ejecutaServicio(function () {
13
14 $id = recuperaIdEntero("id");
15 $nombre = recuperaTexto("nombre");
16
17 $nombre = validaNombre($nombre);
18
19 update(
20 pdo: Bd::pdo(),
21 table: PASATIEMPO,
22 set: [PAS_NOMBRE => $nombre],
23 where: [PAS_ID => $id]
24 );
25
26 devuelveJson([
27 "id" => ["value" => $id],
28 "nombre" => ["value" => $nombre],
29 ]);
30});
31
skip_previous skip_next