Kyberia v2.3 - 1st revision from SVN (Without patches of kyberia.sk team)
[mirrors/Kyberia-bloodline.git] / inc / eventz / set_listing_amount.inc
CommitLineData
e586807d 1<?php
e586807d
H
2
3function set_listing_amount() {
4 global $db,$error;
5 $listing_amount=$_POST['listing_amount'];
6 $user_id=$_SESSION['user_id'];
7 if (!$user_id) {
8 return false;
9 }
10
11 $db->query("update users set listing_amount='$listing_amount' where user_id='$user_id'");
12 $_SESSION['listing_amount']=$listing_amount;
13}
14
15?>
This page took 0.103012 seconds and 4 git commands to generate.