Jump to content

Session array


otuatail

Recommended Posts

Hi guys. Need a help on sessions

I have aclient that wants to do a kind of ecommerce site without the ecommerce, if that makes sence. There is a list of items to pick from in  a pure html page. A page was written in a spreadsheet format (also html) that could be populated with quantities costs and totals. This form is simply printed off and / or emailed to the client. Sounds stupid I know.

 

The problem I have is I can't use a database. So I need some kind of session variable. This page can be converted to PHP. I need a 2 dimentional structure of 80 rows X 4 Cols. But this will have to be a session variable. Preff. one.

 

Any thought or ideas on this one. I know it is a crasy setup. I did not write it. but i have to live with it.

 

 

TIA

 

Desmond.

 

Link to comment
Share on other sites

This code will do that for you:

<?php
session_start();
if (!isset($_SESSION['hold_array']))
$_SESSION['hold_array'] = array_fill(1,80,array_fill(1,4,0)); // create the array if it's not there -- initialize all cells to zero
$hold_array = $_SESSION['hold_array'];
echo '<pre>' . print_r($hold_array,true) . '</pre>'; // debug -- show what's in the array
?>

 

Ken

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.