what is the simplest way of embedding another web page in php
Today we are going to talk about what is the simplest way of embedding another web page in php basically we use "div " tag to embedding however in this methods you can fully customize your Embed part which mean you can embed select Ares of another web page . Let's See How to do that ...First copy below code into your page.
<div style="margin-left: -250px; margin-top: 50px; overflow: hidden;">
<iframe scrolling="no" src="url" style="border: 0px none; height: 900px; margin-bottom: -50px; margin-left: -240px; margin-top: -100px; width: 2000px;">
</iframe>
</div>
Then replace the "url" to embed web page link .
<div style="margin-left: -250px; margin-top: 50px; overflow: hidden;">
<iframe scrolling="no" src="url" style="border: 0px none; height: 900px; margin-bottom: -50px; margin-left: -240px; margin-top: -100px; width: 2000px;">
</iframe>
</div>
Now you can adjust margins with your creation