View file public_html/chatads.php

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

	include('remchatads.php');

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

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

	$url=$row["link"];
	$adstext=$row["text"];
	
	?>
	<style>
		a { color: #f00; text-decoration: none; font-weight: bold; }
		a:hover { color: #a00; text-decoration: none; fron-weight: bold; }
	</style>

	<b>Реклама в чате: </b>
	<a href="<?=$url ?>" target="_blank"><?=$adstext?></a>
	<br>
	<a href="advertise.php?adv=chat" target="_blank">Разместить рекламу в чате</a>

	<script type="text/javascript">
	setTimeout('location.replace("chatads.php")', 10000);
	</script>
	<noscript>
	<meta http-equiv="refresh" content="10; url=chatads.php">
	</noscript>
	<?

	mysql_close($con);
?>