added recursive iframe cringe#

This commit is contained in:
MrLetsplay 2022-04-19 19:44:35 +02:00
parent dc4daf83df
commit 547368b1be

View File

@ -297,9 +297,19 @@
</div> </div>
</div> </div>
</div> </div>
<iframe id="cringe-frame" src="https://cringe-studios.com/?poop" style="width:100%; height:800px; border:0px"></iframe>
<h6><b class="blinking" style="background-color:red; color:yellow">This site has been visited <?php include("visitor_counter.php"); echo IncrementCounter(); ?> times</b></h6> <h6><b class="blinking" style="background-color:red; color:yellow">This site has been visited <?php include("visitor_counter.php"); echo IncrementCounter(); ?> times</b></h6>
<footer> <footer>
&copy; Cringe Studios &copy; Cringe Studios
</footer> </footer>
<script>
let search = window.location.search;
let q = search != "" ? parseInt(search.substring(1)) : 0;
let frame = document.getElementById("cringe-frame");
frame.src = "https://cringe-studios.com/?" + (q + 1);
</script>
</body> </body>
</html> </html>