iframe
<!DOCTYPE html>
<html>
<body>
<iframe src="https://comercioiturama.blogspot.com/" width="800" height="600"></iframe>
</body>
</html>
iframe
<!DOCTYPE html>
<html>
<body>
<iframe src="https://comercioiturama.blogspot.com/" width="800" height="600"></iframe>
</body>
</html>
embed / iframe website into my own website
----------------
INDEX.PHP
----------------
use iframe
<iframe src="mysite.com/preview.php" width="100%" height="100%" frameBorder="0"></iframe>
----------------
PREVIEW.PHP
----------------
<?php
$_GET = filter_input_array(INPUT_GET, FILTER_SANITIZE_STRING);
$_POST = filter_input_array(INPUT_POST, FILTER_SANITIZE_STRING);
$url = "put the url here";
$curl = curl_init();
curl_setopt($curl,CURLOPT_URL,$url);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl,CURLOPT_SSL_VERIFYPEER,false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 5);
curl_getinfo($curl, CURLINFO_HTTP_CODE);
$result = curl_exec($curl);
// echo "Info: " . print_r(curl_getinfo($curl), true) . "\n";
$info = curl_getinfo($curl);
if ($info["http_code"] == "400" ) {
echo "<h1>This page is not allowed to curl or having BAD request URL.</h1>";
}
else{
print($result);
}
?>
html iframe tag
<iframe src="http://kidcreatorsteam.com" height="90px" width="40px"></iframe>
<!--I made an iframe! Yay! -->
html iframe example
<iframe src="http://www.codegrepper.com"></iframe>
iframe
<iframe id="inlineFrameExample"
title="Inline Frame Example"
width="300"
height="200"
src="https://www.openstreetmap.org/export/embed.html?bbox=-0.004017949104309083%2C51.47612752641776%2C0.00030577182769775396%2C51.478569861898606&layer=mapnik">
</iframe>
put html in iframe
<iframe srcdoc="<html><body>Hello, <b>world</b>.</body></html>"></iframe>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us