4d3c1cdf25d8b0b3308509bb43f7f5ed98f8bb05
[mirrors/Kyberia-bloodline.git] / set_listing_amount.inc
1 <?php
2
3 function 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.265747 seconds and 3 git commands to generate.