positon of external form response
Permalink
At the moment I can output my external form response with
<?php if (isset($response)) { ?>
<div class="response"><?php echo $response?></div>
<?php } ?>
This only shows up when it is in the form. However I would like to put this at the top of the page, is this possible? Can I access it though a global variable or some other way?
<?php if (isset($response)) { ?>
<div class="response"><?php echo $response?></div>
<?php } ?>
This only shows up when it is in the form. However I would like to put this at the top of the page, is this possible? Can I access it though a global variable or some other way?