Сирожиддин
JAMES_RODRIGUEZ, kodingizda mantiq yo'q, insert intoda WHERE ishlatmang, `id` ni ham o'zi avtomatik oladi.

Kod · PHP51 qator
<?php

define('_IN_JOHNCMS', 1);

$headmod = 'tournament23454';

$textl = 'Кубковые турниры';

require_once ("../incfiles/core.php");

require_once ("../incfiles/head.php");

 

// Новички

if ($id) {

$q = mysql_query("select * from fman_matches where id = '$id'");

$m = mysql_fetch_array($q);

 

mysql_query("insert into `r_cupgame` 

set 

`rez1`='" . $m['sc1'] . "', 

`rez2`='" . $m['sc2'] . "', 

`pen1`='" . $m['pen1'] . "', 

`pen2`='" . $m['pen2'] . "', 

`id_report`='" . $m['id'] . "'

;") or die(mysql_error());

 

header('location: /man/match.php?id='.$id);

exit;

}

require_once ("../incfiles/end.php");

?>