예제 #1
0
파일: license.php 프로젝트: razZ0r/doop-web
<?php

require_once 'include/general.inc';
require_once 'include/config.inc';
require_once 'include/text.inc';
$html = xml_def();
$html .= doctype_def();
$html .= head_start($address, 'DoOPSearch Web Server - License and download');
$html .= head_end();
$html .= body_start('DoOPSearch Web Server');
$html .= link_start();
$html .= link_general($address);
$html .= link_end();
$html .= main_start();
$html .= content_start();
$html .= texts('license');
$html .= content_end();
$html .= main_end();
$html .= body_end();
echo $html;
예제 #2
0
<?php

require_once 'include/general.inc';
require_once 'include/text.inc';
require_once 'include/doops_config.inc';
$html = xml_def();
$html .= doctype_def();
$html .= head_start($address, 'DoOPSearch Web Server - Database Creation');
$html .= head_end();
$html .= body_start('DoOPSearch Web Server');
$html .= link_start();
$html .= link_general($address);
$html .= link_end();
$html .= main_start();
$html .= content_start();
$html .= texts('doopsc');
$html .= content_end();
$html .= main_end();
$html .= body_end();
echo $html;
예제 #3
0
<?php

require_once 'include/general.inc';
require_once 'include/config.inc';
require_once 'include/text.inc';
$html = xml_def();
$html .= doctype_def();
$html .= head_start($address, 'Database of Orthologous Promoters - Database creation');
$html .= head_end();
$html .= body_start('Database of Orthologous Promoters');
$html .= link_start();
$html .= link_general($address);
$html .= link_end();
$html .= main_start();
$html .= content_start();
$html .= texts('creation');
$html .= content_end();
$html .= main_end();
$html .= body_end();
echo $html;
예제 #4
0
파일: index.php 프로젝트: razZ0r/doop-web
<?php

require_once 'include/config.inc';
require_once 'include/general.inc';
require_once 'include/text.inc';
$html = xml_def();
$html .= doctype_def();
$html .= head_start($address, 'Database of Orthologous Promoters - Main Page');
$html .= head_end();
$html .= body_start('Database of Orthologous Promoters');
$html .= link_start();
$html .= link_general($address);
$html .= link_end();
$html .= main_start();
$html .= content_start();
$html .= texts('main_overview');
$html .= texts('main_sections');
$html .= form_dbselect($address);
$html .= texts('main_fordoops');
$html .= content_end();
$html .= main_end();
$html .= body_end();
echo $html;
예제 #5
0
파일: index.php 프로젝트: razZ0r/doop-web
<?php

require_once 'include/general.inc';
require_once 'include/text.inc';
require_once 'include/doops_config.inc';
$html = xml_def();
$html .= doctype_def();
$html .= head_start($address, 'DoOPSearch Web Server - Main Page');
$html .= head_end();
$html .= body_start('DoOPSearch Web Server');
$html .= link_start();
$html .= link_general($address);
$html .= link_end();
$html .= main_start();
$html .= content_start();
$html .= texts('main_overview_doops');
$html .= texts('main_sections');
$html .= form_dbselect($address);
$html .= content_end();
$html .= main_end();
$html .= body_end();
echo $html;