summaryrefslogtreecommitdiff
path: root/includes/model/User_model.php
blob: c2d2282e9e2f0a34933fd7d0b529ec44bba03e2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

/**
 * Returns user by id.
 * @param $id UID
 */
function User($id) {
  $user_source = sql_select("SELECT * FROM `User` WHERE `UID`=" . sql_escape($id) . " LIMIT 1");
  if(count($user_source) > 0)
    return $user_source[0];
  return null;
}

?>