Update web view
This commit is contained in:
@@ -140,6 +140,22 @@ function LoadCategory(&$user, $id)
|
||||
return "";
|
||||
}
|
||||
|
||||
function LoadTag(&$user, $id)
|
||||
{
|
||||
global $db;
|
||||
|
||||
$result = $db->query("SELECT * FROM tag WHERE id='$id'");
|
||||
|
||||
if ($row = $result->fetchArray())
|
||||
{
|
||||
array_push($user->tags, $row);
|
||||
|
||||
return $row;
|
||||
}
|
||||
|
||||
return "";
|
||||
}
|
||||
|
||||
function GetAccountAmount($id, $month, $year)
|
||||
{
|
||||
global $db;
|
||||
|
||||
Reference in New Issue
Block a user