reset_passwod final fix
[mirrors/Kyberia-bloodline.git] / wwwroot / inc / eventz / set_type.inc
CommitLineData
51ff3226 1<?php
2
3function set_type() {
4 global $node,$db;
5 $node_type=$_POST['node_type'];
6 $node_id=$node['node_id'];
7 $q="update nodes set node_type='$node_type' where node_id='$node_id'";
8 echo $q;
9 $db->query($q);
10
11}
12
13?>
This page took 0.234536 seconds and 4 git commands to generate.