https://www.animal-magnet.net/
https://www.my-website-stuff.net/
The Code:<div class="Script"> <?php /*Set This File => Code_View.php*/ $thisfile = "Random_Ordered_Urls.php"; echo "<input type='submit' name='submit' value='Refresh Page' onclick='window.location.reload();'>"; require('header.meta');?> <?php echo "<h2>Random Ordered Urls</h2>"; function Random_Ordered_Urls() { $MyArray = array( "http://some.com/","http://my.website.com/", "http://just.net/","https://another.com/", "https://your.mom.com/","https://mobile.food.com/", "http://www.eating-pie.org/","http://www.our.home.com/", "http://www.yellow-fever.com/","https://www.animal-magnet.net/", "https://www.somalia.help.org/","https://www.my-website-stuff.net/", ); shuffle($MyArray); foreach ($MyArray as $url) { echo "<p><a style=\"color:#aaa;\" href=\"$url\">$url</a></p>" ; } } Random_Ordered_Urls(); ?> <?php /*Insert Code View*/ include('Code_View.php');?> </div>