close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Passing Form Elements as Session Variables

Thread began 10/05/2012 3:14 am by salaroche | Last modified 10/05/2012 9:26 pm by salaroche | 2090 views | 2 replies |

salaroche

Passing Form Elements as Session Variables

Jason:

Some time ago you suggested I use the code below to create a Session variable for each form element in a WADA Search Page. You suggested I enter that code on line one of the Results page.

<?php
@session_start();
if($_SERVER["REQUEST_METHOD"] == "POST") {
foreach($_POST as $k => $v) {
// store as session
$_SESSION[$k] = $v;
}
}
?>

Then you suggested I enter the following 2 lines of code on the Update page so that I may retrieve the session variable S_teacherName in that page. That code I entered on line one of the Update page.

<?php @session_start(); echo((isset($_SESSION["S_teacherName"]))?$_SESSION["S_teacherName"]:"") ?>

<?php echo((isset($_SESSION["S_teacherName"]))?$_SESSION["S_teacherName"]:"") ?>

Your suggestions worked well then and I'm sure they would work fine always. However, now I would need to use one of the Session variables in the Results page itself, but when I enter all the code listed above in the Results page, I cannot retrieve any of the new Session Variables in the Results page.

I've also tried not entering the second line of code (<?php @session_star(): echo.....), but it doesn't work either.

What am I not doing right?

Thank you for your attention.

Sign in to reply to this post

Jason ByrnesWebAssist

this code:

<?php
@session_start();
if($_SERVER["REQUEST_METHOD"] == "POST") {
foreach($_POST as $k => $v) {
// store as session
$_SESSION[$k] = $v;
}
}
?>


loops through each form element on your page, and creates a session variable of the same name with the value that was entered.

to use those session variables on another page, you need to note the name of the form element, and use that as the session name.

this code:
<?php @session_start(); echo((isset($_SESSION["S_teacherName"]))?$_SESSION["S_teacherName"]:"") ?>

would work if the form element where named "S_teacherName". but if the form element has a different name, you need to change that code accordingly.

Sign in to reply to this post

salaroche

Jason:

Many thanks

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...