Просмотр файла top/in.php

Размер файла: 417B
<?php
@mysql_connect('localhost', 'amletco_nofx', 'nofx');
@mysql_select_db('amletco_top');
$q = @mysql_query("select * from `top` where id='$id';");
$data = @mysql_fetch_array($q);
$id=$data['id'];
$data['cin'] += 1;
$data['allin'] += 1;


@mysql_query("update `top` set cin='".$data['cin']."', allin='".$data['allin']."' where id='$id';");

header("Location: ./info.php?id=".$data['id']."");

?>