PHP Classes

File: pri/abk/_act/finish.php

Recommend this page to a friend!
  Classes of Vallo Reima   Tiny PHP Address Book   pri/abk/_act/finish.php   Download  
File: pri/abk/_act/finish.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Tiny PHP Address Book
Manage address book stored in a database with PDO
Author: By
Last change:
Date: 7 years ago
Size: 478 bytes
 

Contents

Class file image Download
<?php

/*
 * bye panel creator
 *
 * Logout and show end page or login again
 *
 * @package Application
 * @author Vallo Reima
 * @copyright (C)2010
 */
$msgs[0] = ¤::_('txt.tnk');
$msgs[1] = '';
$msgs[2] = ¤::_('txt.slo');
ob_start();
echo
'<div class="wrapper">';
include(
TPLD . 'exit' . TPL);
echo
'</div>';
$htm = ob_get_clean();
$rsp = ['htm' => $htm];
//header('Content-Type: application/json; charset=utf-8');
echo json_encode($rsp);
?>