So I've created a php document called ECO_output.php that utilizes the PHPExcel funtionality. So far all works well when I call it through the use of a button in the form of this code:
<code>
window.location.href = "Addition/ECO_output.php";
return;
</code>
However I had to add a step in between this that now uses this button to redirect the user to the add page for them to complete the required fields. Which I have working. What I need is when the user submits the data via the save button for the after record added to run the above mentioned code to generate the excel copy and then redirect the user to another page.
What is the proper way about doing this in PHPRunner?