Search found 3 matches
- Sun Jan 27, 2008 12:49 am
- Forum: Joomla! Coding 101
- Topic: How to back previous page with values just entered
- Replies: 6
- Views: 1247
Re: How to back previous page with values just entered
I am just using the $_session variable to store values that I collect on a few consecutive screens so that I can use them to do calculations and create a report. The program will be similar to one that was written by a professional programmer for me at http://www.freevaluationsonline.com to do...
- Sat Jan 26, 2008 8:28 pm
- Forum: Joomla! Coding 101
- Topic: How to back previous page with values just entered
- Replies: 6
- Views: 1247
Re: How to back previous page with values just entered
Never mind: Problem solved. In case anyone else wants to know, I used:
David
Code: Select all
$_SESSION = array_merge($_SESSION,$_REQUEST);
David
- Sat Jan 26, 2008 7:59 pm
- Forum: Joomla! Coding 101
- Topic: How to back previous page with values just entered
- Replies: 6
- Views: 1247
Re: How to back previous page with values just entered
When I use the code $_SESSION['formvalues'] = $_REQUEST; It puts the values into an array within the $_session array, so then when I want to get a value out I need to do something like: echo "risk5 : ",$_SESSION['formvalues']['risk5']; Is there an easy way to expand the fromvalues array as I ...