Hej guys,
I want to be able to refresh a page when a button is clicked and then show a message. Either way I do this ;
echo "<br><h4>Test Words</h4><br>";
header("Location: testpage.php");
or
header("Location: testpage.php");
echo "<br><h4>Test Words</h4><br>";
It refreshes and does not show me the words. Is this possible to do? The reason I have done this is I want to be able to do all my PHP / everything, refresh the page, so it has up to date details. Then show me a message?