Jump to content

fugix

Members
  • Posts

    1,483
  • Joined

  • Last visited

Posts posted by fugix

  1. Okay so the output that you showed me indicates that your variables are passing to that other page, but your booking session is empty. I would remove the empty declaration of your booking session. The only time you will need to declare the booking session is when you are setting it to the variable $data. Once you do that, perform a print_r($_SESSION)

  2. From php.net

    'DOCUMENT_ROOT'
    The document root directory under which the current script is executing, as defined in the server's configuration file.
    

    Insert this into one if your php documents to check your document root file. Your files will need to be linked to it.

    echo $_SERVER['DOCUMENT_ROOT'];

  3. No problem, basically, you are trying to use sessions that do not have values. Which will cause an undefined index error that you received. The way your code is now, your sessions will only be able to be called after your $_POST datahas been sent, thus setting the values od your sessions yo that data.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.