* @copyright 2025 Bartolomé Sintes Marco
* @license http://www.gnu.org/licenses/agpl.txt AGPL 3 or later
* @version 2025-01-31
* @link https://www.mclibre.org
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see
Usted sólo ha escrito que su nombre es: $_SESSION[nombre]
\n"; } elseif (!isset($_SESSION["nombre"]) and isset($_SESSION["apellidos"])) { // Si no hay nombre pero sí apellidos en la sesión, lo dice print "Usted sólo ha escrito que sus apellidos son: $_SESSION[apellidos]
\n"; } else { // Si hay nombre y apellidos en la sesión, lo dice print "Usted ha escrito que su nombre es: $_SESSION[nombre]
\n"; print "\n"; print "Usted ha escrito que sus apellidos son: $_SESSION[apellidos]
\n"; } ?>