I am trying to copy this online tool: https://www.joydeepdeb.com/tools/crawl-set-user-agent.html
Here is my code:
<?php
ini_set('user_agent', 'Testing/User-Agent');
?>
<iframe id="iframe" src="https://www.whatsmyua.info/" width="100%" height="100%"></iframe>
Instead of showing the fake user-agent ( Testing/User-Agent ), it shows my real browser's user-agent. How can I fix this? Thanks.