DevNetwork Forums

The Developer's Network
It is currently Tue Feb 09, 2010 6:05 am

All times are UTC - 5 hours




Post new topic Reply to topic  [ 3 posts ] 
Author Message
 Post subject: Multi page form with diffrent paths return options
PostPosted: Tue Jan 20, 2009 1:49 am 
Offline
Forum Newbie

Joined: Tue Jan 20, 2009 1:34 am
Posts: 2
Hi , I don't have experience in PHP , I worked with graphics , 3d , vb ,lua and other stuff , I only did a couple of sites that used small PHP scripts . I'm statrting to work on a project that will have multi page forms with difrent paths with java script that will hide / show fields on each page and change background . Each page will have navigation tabs to jump to previos steps , lets say first step has page 234 , second step has page 567 , Is posible for an option in page 1 to change the path let's say jump to page 3 and then page 6 and then the step 1 tab on page 6 to return you to page 3 but if the path was 4 - 6 then the tab for step 1 on page 6 returns to page 4 ? Or I have to create separate multi page forms for all the variables ?


Top
 Profile E-mail  
 
 Post subject: Re: Multi page form with diffrent paths return options
PostPosted: Tue Jan 20, 2009 9:58 am 
Offline
DevNet Resident
User avatar

Joined: Sat Jun 01, 2002 10:16 am
Posts: 1029
Location: San Diego CA
You can use something like this to make a page return wherever it came from, rather than a fixed page:
  1. if (isset($_GET['Quit']))                               // leaving, return to sender
  2. {    $Go = "Location:" . $_SESSION['IxhereRetn'];
  3.      unset($_SESSION['IxhereRetn']);
  4.      header($Go);
  5.      exit;
  6. }
  7. if (!isset($_SESSION['IxhereRetn']))
  8.      $_SESSION['IxhereRetn'] = $_SERVER['HTTP_REFERER'];        // may have come from many places
  9.  

The problen is that $_SERVER['HTTP_REFERER'] is iffy, not all servers provide it.


Top
 Profile  
 
 Post subject: Re: Multi page form with diffrent paths return options
PostPosted: Tue Jan 20, 2009 1:02 pm 
Offline
Forum Newbie

Joined: Tue Jan 20, 2009 1:34 am
Posts: 2
Thank you , I will try that .


Top
 Profile E-mail  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC - 5 hours


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group