PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php session_start(); $websites = array("kulik.uz", "ren.fun"); if (!isset($_SESSION['website_index'])) { $_SESSION['website_index'] = 0; } $website_index = $_SESSION['website_index']; echo $websites[$website_index]; $_SESSION['website_index'] = ($website_index + 1) % count($websites);
Show:  
Copy Clear