I have a system in PHP; to access it I use the script below redirecting directly to it inside the frame , so the address stays static in the browser.
Is there a problem or not a recommendation for this type of practice?
<frameset rows="0,*" border="0">
<frame name="header" scrolling="no" noresize target="main">
<frame name="main" src="https://meusite.com/meusistema.html">
<noframes>
<body>
</body>
</noframes>
</frameset>