how to stop this code from executing the redirect – PHP
I need to prevent the program from executing the redirect so I can see the sensitive information <?php $redirect_url = 'page2.php'; header("Location: " . $redirect_url); ?> <div id="demo">This is sensitive information</div> I expect the code to remain at the same…