473,776 Members | 1,572 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

$_SESSION=$_POS T

if i set a $_SESSION=$_POS T in every page of a multiple page form how
then would i call it on a later page of the same session? and also how
is distigushed between pages ? should it be set up differently on each
page, ive read of
$_SESSION['variablename']=$_POST
but i cant seem to figure out how to call it back at the end of the form

Jul 17 '05 #1
9 6797
LB
Quinonez wrote:
if i set a $_SESSION=$_POS T in every page of a multiple page form how
then would i call it on a later page of the same session? and also how
is distigushed between pages ? should it be set up differently on each
page, ive read of
$_SESSION['variablename']=$_POST
but i cant seem to figure out how to call it back at the end of the form

it's called back using echo $_SESSION['variable']...that simple
Jul 17 '05 #2
here is an example of my code:
=======resource s_a6.php=====
<?
session_start() ;
header("Cache-control: private");
$_SESSION['resources_a6'] = $_POST;
?>
<html>
<head>
<title>2004 APPLICATION FOR AFFILIATION</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
<link href="forms.css " rel="stylesheet " type="text/css">
</head>
<body bgcolor="#00000 0" leftmargin="0" topmargin="0">
<form action="resourc es_a7.php" method="post">
............... ...
// then my form and submit button are here so on and so on

======resources _a7.php======== ==
<?
session_start() ;
header("Cache-control: private");
$_SESSION['resources_a7'] = $_POST;
?>
<html>
<head>
<title>2004 APPLICATION FOR AFFILIATION</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
<link href="forms.css " rel="stylesheet " type="text/css">
</head>
<body bgcolor="#00000 0" leftmargin="0" topmargin="0">
<form action="testthi s.php" method="post">
............... ...
// then my form and submit button are here so on and so on

=============te stthis.php===== ===
<?
session_start() ;
header("Cache-control: private");
?>
<html>
<body>

<?
foreach($_POST as $field=>$value)
{
echo "$field = $value<br>";
}
?>
</body>
</html>

How do i change this to display correctly? currently it will only
display the last page

Jul 17 '05 #3
LB
Quinonez wrote:
here is an example of my code:
=======resource s_a6.php=====
<?
session_start() ;
header("Cache-control: private");
$_SESSION['resources_a6'] = $_POST;
?>
<html>
<head>
<title>2004 APPLICATION FOR AFFILIATION</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
<link href="forms.css " rel="stylesheet " type="text/css">
</head>
<body bgcolor="#00000 0" leftmargin="0" topmargin="0">
<form action="resourc es_a7.php" method="post">
............... ..
// then my form and submit button are here so on and so on

======resources _a7.php======== ==
<?
session_start() ;
header("Cache-control: private");
$_SESSION['resources_a7'] = $_POST;
?>
<html>
<head>
<title>2004 APPLICATION FOR AFFILIATION</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1">
<link href="forms.css " rel="stylesheet " type="text/css">
</head>
<body bgcolor="#00000 0" leftmargin="0" topmargin="0">
<form action="testthi s.php" method="post">
............... ..
// then my form and submit button are here so on and so on

=============te stthis.php===== ===
<?
session_start() ;
header("Cache-control: private");
?>
<html>
<body>

<?
foreach($_POST as $field=>$value)
{
echo "$field = $value<br>";
}
?>
</body>
</html>

How do i change this to display correctly? currently it will only
display the last page

ok, first make sure you have a variable in $_POST (ie $_POST['name'])
then you can append values by using .= however it looks like your trying
to set the session variable to an array and to be honest i'm not
entirely sure how to had value to an array.. start at php.net with 'add
values array' or similar...hope that helps

Erick
Jul 17 '05 #4
no actually that wasnt what i was looking for...i have looked through
the groups and found that w. a mulitple page form all i had to do was
set it as $_SESSION=$_POS T but after that i do not know what to do...

Jul 17 '05 #5

Quinonez wrote:
here is an example of my code:
[snip]

=============te stthis.php===== ===
<?
session_start() ;
header("Cache-control: private");
?>
<html>
<body>

<?
foreach($_POST as $field=>$value)
{
echo "$field = $value<br>";
}
?>
</body>
</html>

How do i change this to display correctly? currently it will only
display the last page


Here's one way...
In each of your processing programs:
<?
$_SESSION['processed'][] = $_POST;
?>

In testthis.php:
<?
for ($i=0;$i<count( $_SESSION['processed']);$i++)
foreach ($_SESSION['processed'][$i] as $field => $key)
echo "$field = $value<br>";
?>

Note: this code is untested, so it may not work.

Ken

Jul 17 '05 #6
Quinonez wrote:
<snip>
=============t estthis.php==== ====
<?
session_start() ;
header("Cache-control: private");
$_SESSION['testthis'] = $_POST;
?>
<html>
<body>

<?
## foreach($_POST as $field=>$value)
## {
## echo "$field = $value<br>";
## }
echo '<pre>'; print_r($_SESSI ON); echo '</pre>';

or

foreach ($_SESSION as $page=>$post) {
echo "<h1>$page</h1>";
foreach ($post as $field=>$value) {
echo "$field = $value<br>";
}
}
?>
</body>
</html>

How do i change this to display correctly? currently it will only
display the last page


The $_POST array only has the last submitted page.
You need to use the $_SESSION array.
Happy Coding :-)

--
Mail to my "From:" address is readable by all at http://www.dodgeit.com/
== ** ## !! ------------------------------------------------ !! ## ** ==
TEXT-ONLY mail to the whole "Reply-To:" address ("My Name" <my@address>)
may bypass my spam filter. If it does, I may reply from another address!
Jul 17 '05 #7
May not be of interest (and indeed this may be wrong but it works for
me) - Using PHP PEAR quickform

if($form->validate())
{
$_SESSION = array_merge($_S ESSION,$form->exportValues() );
}

appends the form variables to the session. Then knowing the names of
the fields i access them by $_SESSION['name']

Chris

Jul 17 '05 #8

Quinonez wrote:
no actually that wasnt what i was looking for...i have looked through
the groups and found that w. a mulitple page form all i had to do was
set it as $_SESSION=$_POS T but after that i do not know what to do...


If you don't know what to do, then first you have to see what you put
in the $_SESSION array. In each program, after you do the
$_SESSION=$_POS T, dump the contents of $_SESSION by doing

echo '<pre>';print_ r ($_SESSION); echo '</pre>';

After you see the contents, you should be able to figure out what to
do.

Ken

Jul 17 '05 #9
thanks all...i finally got it to work ..with answers here and there...

Jul 17 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

15
3715
by: mammothman42 | last post by:
hi i've got a basic user register form, action="POST". in my php code (on the same page, i store the $_POST stuff to a $_SESSION if the user screws a field up so they don't have to reenter all their info. But i'm thinking, why should i use $_POST at all if i can just us the $_SESSION array? or maybe even vice versa? or am i doing this all the wrong way? cheers
2
1918
by: Tom | last post by:
I put together a code that checks for 2 post variables then stores them in a multi-dim $_SESSION array, something like this: If ( isset($_POST && isset($_POST) ) { $_SESSION = $_POST; $_SESSION = $_POST; } The problem was that $_SESSION was being overwritten with
7
2491
by: Dynamo | last post by:
I am using values stored an $_POST array to display records from a table before asking the user if he is sure he wants to delete them. If the user confirms then the records are deleted. Without boring you with all of the code here is the rough idea. <?php $delete = '( id = ' . implode(' OR id = ', $_POST ) . ' ) '; if (!isset($_POST)) { // Then display the records that were marked for deletion ?>
14
5881
by: Sandman | last post by:
Is there any particular reason I should still use $_POST? Also, I'm reading mixed things about sessions. php.net says you can propagate session IDs either via cookies or session IDs: http://www.php.net/manual/en/ref.session.php#session.idpassing OK cool. However, PHP in a nutshell makes no mention of this. Paul just says hey, use session_start() and you're on your way:
1
2566
by: Jankie | last post by:
I was reading one of the past thread supported by Pbmods.And as always contributing with excellence,he recommended this code for session management foreach($_POST as $key => $val) $_SESSION = $val; This translates all POST variables into the Session one.
8
3369
by: SpiritBreaker | last post by:
I am having problems getting the $_SESSION to set, the $_SESSION will work fine when its first gets the value, however, when I go to another page, the $_SESSION then loses its value. So if any one can take a look at my code and see if there is any problems, that would be good. Thanks Here is my code <?php if (!isset($_SESSION)) session_start();
14
1585
by: Zorque | last post by:
Suppose I have an HTML form that sends data to a PHP script, "post" method. If this script generates a page with a link to another script, will the latter script get the former's $_POST data when the user clicks on the link? If not, is there a straightforward way (i.e.: no saving to files or cookies) to "post" the data to the latter script without using a form?
4
1441
by: jodleren | last post by:
Hi! // get user to edit if( ($_POST=="btn_selusr")||($_POST!="") ) { echo "x:".$_SESSION; $username=stripslashes($_POST); echo "y:".$_SESSION; }
0
9464
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10289
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10120
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10061
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8952
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7471
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6722
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5493
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4031
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.