Kyberia v2.3 - 1st revision from SVN (Without patches of kyberia.sk team)
[mirrors/Kyberia-bloodline.git] / inc / eventz / set_type.inc
1 <?php
2
3 function 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.260396 seconds and 4 git commands to generate.