psql db schema test
[mirrors/Kyberia-bloodline.git] / wwwroot / inc / eventz / set_listing_amount.inc
CommitLineData
51ff3226 1<?php
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 2.317338 seconds and 4 git commands to generate.