obanana_b2b_test/admin/token-renew.php

12 lines
201 B
PHP
Raw Permalink Normal View History

<?php
include "../functions.php";
$token = loginRenew($_SESSION["email"], $_SESSION["password"], $_SESSION["token"]);
$_SESSION["token"] = $token;
header("Location: vendor-profile.php");
exit;
?>