|
Posted by Jim Carlock on 09/30/44 11:38
<xclarky@gmail.com> posted:
> Have you considered using sessions? You could use them to create
> a temporary cache of the array quite easily.
<?php
session_start();
if (!isset($_SESSION['array_cache'])) {
$array = array('value', 'value');
$_SESSION['array_cache'] = $array;
} else {
$array = $_SESSION['array_cache'];
}
?>
Thanks, Clark(?). I'll give that a go.
Jim Carlock
Post replies to the newsgroup.
Navigation:
[Reply to this message]
|