I really need to learn more about PHP. I used to code in C++ back in the early to mid 90's when I ran a BBS and it seems similar.
Anyway, thank you so much, it works great! I saw it switching...
Type: Posts; User: zoldos; Keyword(s):
I really need to learn more about PHP. I used to code in C++ back in the early to mid 90's when I ran a BBS and it seems similar.
Anyway, thank you so much, it works great! I saw it switching...
Okay great! Here's what I have now:
<?php
$a=array("/ts","/ts2");
$random_keys=array_rand($a,2);
if ($a='/ts') {
header("Location: /ts"); exit();
This is my current code:
<?php
{ header("Location: /ts"); exit(); }
?>
I'd like to change it, or make some new code, so it will randomly forward either to the above site, or another on...