obanana_b2b_test/check_session_variables.php

10 lines
193 B
PHP
Raw Normal View History

<?php
include "functions.php";
if($_SESSION["is_test"]==true){
echo '<pre>';
var_dump($_SESSION);
echo '</pre>';
}else{
echo "<h1>Alert! This only works in test mode.</h1>";
}