Viewing 4 replies - 1 through 4 (of 4 total)
  • Possibly….

    The form variables are all output to an array called $formvalues in the qcf_loop function. So you can do what you like to them after that.

    I’m not a proper developer, I just do this as a hobby. If you can give me a clue as to what you want I might be able to do something but I’ve never played with session variables so it’s a bit of a leap unto the unknown…

    Thread Starter DIdesigns

    (@didesigns)

    i figured out what I needed… only issue now is your redirect happens really late.
    <?php
    session_start();

    $_SESSION[‘qcf1’] = $_POST[‘qcfname1’];
    $_SESSION[‘qcf2’] = $_POST[‘qcfname2’];
    $_SESSION[‘qcf3’] = $_POST[‘qcfname3’];

    ?>

    this allows me to use the submitted form content on the redirected page

    The redirect happens after the form has been sent and the messages saved to the options table.

    If you can suggest a new location in the script for the redirect that doesn’t make a dogs dinner of everything else I will be happy to oblige.

    Calling this resolved as there has been no response from the OP

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Form Variables’ is closed to new replies.