Files
code-cegled/_include/include_set_credit_to_zero.php
2019-11-21 19:17:41 +01:00

15 lines
262 B
PHP

<?php
# HITELALKALOM NULLÁZÁS
if ($this->is_id()) {
$sql->update_table("user_kid", array(
"uk_credit" => 0,
), array(
"uk_id" => $this->get_id(),
));
header("Location: /admin/members/{$this->get_id()}");
}
?>