I have a action.php which does some processing involving a MySQL-Database. In action.php I generate a variable
$author
with a string in it. When the script terminates it calls test.php by
header('Location: ../test.php');
Now while test.html is shown, I want to display the content of the stringvariable
$author
in a html-element. Like
<h2>echo $author;</h2>
How do I achieve that? Thank you for any responses in advance.