11 lines
171 B
PHP
11 lines
171 B
PHP
<?php
|
|
|
|
require "../header.php";
|
|
|
|
$data = array();
|
|
$data['cardcount'] = $_SESSION['cardcount'];
|
|
|
|
header('Content-Type: application/json');
|
|
echo json_encode($data);
|
|
exit();
|