示例#1
0
}

$objUser1=new UserClass($db);

$objUser1->id=$_SESSION['login'];

$arrUser1=$objUser1->SearchUser();



$objCoustodyAC=new Custody_ACClass($db);

$objCoustodyAC->id_client=$arrUser1[0]['id'];

$arrCustodyAC=$objCoustodyAC->SearchCustody_AC();
?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de-ch" lang="de-ch">
 <head>
  <title>Vurman - Spectrum Funds</title>  
   <meta name="keywords" content="Fund Services, Fund Settlement, Hedge Funds, Offshore Funds, Subscription, Redemption">
   <meta name="description" content="Fund Services, Fund Settlement, Hedge Funds, Offshore Funds, Subscription, Redemption">
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

   <link rel="Stylesheet" href="css/styles.css" />
   <link rel="stylesheet" href="css/redmond/jquery-ui-1.7.2.custom.css" />

   <style type="text/css">
示例#2
0
{
	require_once('../core/connect.php');
	require_once('../core/CoreClass.php');
	require_once('../BLL/Custody_ACBLL.php');
	require_once('../BLL/UserBLL.php');
	
	$objUser=new UserClass($db);
	$objUser->clientid=$_POST['id_client'];
	$arrUser=$objUser->SearchUser();
	
	if(sizeof($arrUser)>0)
	{	
	
		$objCustAC=new Custody_ACClass($db);
		$objCustAC->id_client=$arrUser[0]['id'];
		$arrCustAC=$objCustAC->SearchCustody_AC();
		
		if(sizeof($arrCustAC)>0)
		{
			for($i=0;$i<sizeof($arrCustAC);$i++)
			{
				echo $arrCustAC[$i]['id'].",".$arrCustAC[$i]['name']."|";
			}
		}
		else
		{
			echo "0";
		}
	}
	else
	{