2. 10. 2018

PHP - prepínanie dvoch stránok

Pre potreby zobrazovania dvoch (viacerých) nezávislých stránok monitoringu na jednej obrazovke (browser) som po vyhľadávaní stmolil tento PHP skript. Každých 30 sekúnd prepne zobrazenú stránku. Používa "iframe" a php session.

<html>
<head>
<meta http-equiv="refresh" content="30">
<?php

session_start();

if (!isset($_SESSION['current'])){
   $_SESSION['current'] = 1;
   $current = 1;
}else {
   $current = $_SESSION['current'];
   $_SESSION['current']++;
}

if ($_SESSION['current'] > 2) {
   $_SESSION['current'] = 1; // this way it will start over it reaches the end
}

if ( $_SESSION['current'] == 2 ) { ?>
<iframe src="http://www.first.sk/brano2/report.php" width="100%" height="100%" scrolling=no seamless frameborder=0>
<?php } else { ?>
<iframe src="http://www.second.sk/abc/mon1.php" width="100%" height="100%" scrolling=no seamless frameborder=0>
<?php }

?>
</iframe>
</meta>
</head>
<body>
</body>
</html>

Žiadne komentáre:

Zverejnenie komentára