View file public_html/textads.php

File size: 433B
<?
	require('config.php');

	include('remtextads.php');

	$res=mysql_query("select count(id) from tb_textads");
	$kolvo=mysql_result($res,0,0);
	$i=(int)rand(1,$kolvo);

	$res=mysql_query("select * from tb_textads order by id asc");
	
	for($j=1;$j<=$i;$j++) $row=mysql_fetch_array($res);

	$url=$row["url"];
	$adstext=$row["text"];
	
	echo "<a href=\"$url\" target=\"_blank\">$adstext</a>";

	mysql_close($con);
?>