Ejemplo n.º 1
0
function getGiftListById($gid)
{
    $list = getGiftList();
    foreach ($list['gift'] as $vals) {
        if (!empty($vals)) {
            foreach ($vals as $val) {
                if ($val['gid'] == $gid) {
                    return $val;
                }
            }
        }
    }
    return false;
}
Ejemplo n.º 2
0
<?php

if (!defined('IN_UCHOME')) {
    exit('Access Denied');
}
$friends = array();
//Get all your friends usernames
$query = $_SGLOBAL['db']->query("SELECT fusername\r\n                                 FROM " . tname('friend') . "\r\n                                 WHERE uid={$_SGLOBAL['supe_uid']}\r\n                                   AND status='1'");
while ($value = $_SGLOBAL['db']->fetch_array($query)) {
    $value['fusername'] = saddslashes($value['fusername']);
    $friends[] = $value['fusername'];
}
$friendstr = implode(',', $friends);
//For rebate of information
$touid = (int) $_GET['uid'];
if (!empty($touid)) {
    $toInfo = @getspace($touid);
    if (!empty($toInfo['username'])) {
        $fusername = $toInfo['username'];
    }
}
$giftlist = getGiftList();
// (gift type)
include_once template('gift/view/index');