Hello im looking this php script ("go.php?43387" of this url http://ineedadoctordre.info/3/go.php?43387 , every time when you open this url it redirect to another link, each and every-time it redirect to different url. Thanks
you need just a database . ex: id , url simple php script . $con = mysql_connect("localhost","user","password"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("yourDB", $con); $result = mysql_query("SELECT * FROM urltable ORDER BY rand() LIMIT 1"); $row = mysql_fetch_array($result); header( 'Location:'.$row['url'] ); PHP: