본문 바로가기

공부

php mysql blob binary file read

public function getDataTable(){

if ($this->input->get_post('table_index') == '') 

        {

            $array = array(

                "response_code" => "200",

                "response_message" => "missing parameter"

         );

     

            $data['result'] = $array;

    $this->load->view('version_check_view', $data);

            return ;

        }

$table_index = $this->input->get_post('table_index');

$gotten = mysql_query("select * from 테이블 이름 where data = ".$table_index." ");   

$row = mysql_fetch_assoc($gotten);

$bytes = $row['출력할 칼럼 값']; 

/* header("Content-type: application/bin");

header('Content-disposition: attachment; filename="data.bin"'); */

print $bytes; 

}

728x90

'공부' 카테고리의 다른 글

mysql rand  (0) 2014.12.18
오랜만에찾은 mysql query case 문  (0) 2014.10.31
php 내장함수  (0) 2014.09.23
mysql 번호가 따르는 행 추가  (0) 2014.09.22
[php]timestamp 값 연산하기  (0) 2014.07.17