<?php
require_once('core/connect.php');
require_once('core/CoreClass.php');
require_once('BLL/IsinBLL.php');
require_once('BLL/CurrencyBLL.php');
require_once('BLL/CustodianBLL.php');
require_once('BLL/Custody_ACBLL.php');
require_once('BLL/CurrencyBLL.php');
require_once('BLL/Transfer_BLL.php');
require_once('BLL/UserBLL.php');

$objCurrency=new CurrencyClass($db);
$arrCurrency=$objCurrency->GetCurrencyUsingArray();

$objISIN=new IsinClass($db);
$arrISIN=$objISIN->GetIsinUsingArray();
$objUser=new UserClass($db);

?>
<!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="JOB_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" />
	<script src="js/jquery-1.3.2.min.js" type="text/javascript"></script>
    <script src="js/common.js" type="text/javascript"></script>
	<script type="text/javascript" src="js/jquery-ui-1.7.2.custom.min.js"></script>
Example #2
0
   <img src="ZEIT8.jpg" alt="" /></div>
    <div id="left">
             <?php require_once('include/menu-left-client.php'); ?>
        </div>
        
        <div id="right">
             <?php require_once('include/menu-right-client.php'); ?>
          </div>


<?php
$exists=0;
$msg="";
if ( isset( $_POST["security1"] ) )
{
	$isinObj=new IsinClass($db);
	$isinObj->code=$_POST["security1"];
	$isinArr=$isinObj->SearchIsin();
	
	//print_r($isinArr);
	
	$fundObj=new FundClass($db);
	$fundObj->ISIN=$_POST["security1"];
	$fundArr=$fundObj->SearchFund();
	//print_r($isinArr);
		
	if(sizeof($fundArr)<=0)
	{
		$msg= "WE ARE SOR RY, BUT THIS FUND DOESN'T EXIST IN OUR DATABASE!";
	}