Серверная часть системы создания и управления сайтами
Дипломная работа - Компьютеры, программирование
Другие дипломы по предмету Компьютеры, программирование
;, data_type);
$from = array ($this->db_tables_resources);
$condition = array (id=>$resource_id);
$rowr = $this->dbm->GetData ($what, $from, $condition);
$res.= $rowr[0].$config_delim_sub.$rowr[1].$config_delim_sub.$rowr[2];($c!= 0)
{
$res.= $config_delim_normal;
}
$c -= 1;
}
}
// If global resource
{
// Getting data straight away
$what = array (resource_uid, path, data_type);
$from = array ($this->db_tables_resources);
$condition = array (project_id=>$project_id,
isglobal=>TRUE);
$rows = $this->dbm->GetAllData ($what, $from, $condition);
$c = count($rows) - 1;($rows as $row)
{
$res.= $row[0].$config_delim_sub.$row[1].$config_delim_sub.$row[2];($c!= 0)
{
$res.= $config_delim_normal;
}
$c -= 1;
}
}
$res;
}
}
?>