42868d70
andryeyev
Создал GIT
|
1
2
3
4
5
6
7
8
|
<?php
$id_order = $_GET['order'];
$ls_sql ="update catalogs_orders set processed = 1 where id = $id_order";
$result = mysql_query($ls_sql);
header("Location: http://extremstyle.ua/admin.php/orders/?action=edit&user=". $_GET['user'] ."&order= ".$_GET['order']."");
exit;
?>
|