cubrid_send_glo 함수는 glo 인스턴스로부터 데이터를 꺼내 PHP 표준출력으로 보내준다.
int cubrid_send_glo (int conn_handle, string oid)
$req = cubrid_execute ($con, "select image from person where id =1");
if ($req) {
list ($oid) = cubrid_fetch($req);
cubrid_close_request($req);
Header ("Content-type: image/jpeg");
cubrid_send_glo ($con, $oid);
}