Jump to content

-jml-

Members
  • Posts

    3
  • Joined

  • Last visited

About -jml-

  • Birthday August 9

-jml-'s Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. yes it is a Link <a href="#?ID=<?php echo $ID; ?> site B: $ID = (isset($_GET['ID']) && is_numeric($_GET['ID'])) ? $_GET['ID'] : 'new'; $ID = ''; $clientid = ''; what I don't get is how I can pass the clientid with the link or to be able to recall it on site B ?
  2. In order to pass it along in hidden fields I need to open a form on page (a) the thing is I have on page A just a table asking the guest data from the database - page B is where the form is starting - but in order to get the guestid in to the form of page B might just be with session ? or is there any other possibility?
  3. Hy everyone I would like to get some kind of input for a problem I have. I've got a page (A) wich calls an guestid and selects from the DB the data. Now, I wanna do a Page ( witch is a form Thing is, I need to bring the Guestid from page (a) to page ( - also need to have a new ID (ex. clientid) for the form So far I did it with $_GET['id']; in the page ( i got: $id= (isset($_GET['id']) && is_numeric($_GET['id'])) ? $_GET['id'] : 'new'; the thing is, by opening the form I loos the guestid which I need to reecall somehow. so that there will be at the end: $ID = 'new' $guestid = $guestid for any Inputs I would be more then pleased.
×
×
  • Create New...