zoukankan      html  css  js  c++  java
  • php 显示sqlserver二进制图片

    <?
    header("Content-type:image/ "); 
    // Server in the this format:  or 
    
    // , when using a non default port number
    
    $server = 'KALLESPCSQLEXPRESS';
    $link = mssql_connect('192.168.1.11:1433', 'sa', '123');
    
    if(!$link)
    {
        die('Something went wrong while connecting to MSSQL');
    }
    else{
        mssql_select_db('DATABASE_DATA', $link);
        //$version = mssql_query('SELECT * from RGraph');
    
        //$sql ="EXEC WhateverSProcYouWant some_arguments"; 
    
    $data = mssql_query('SELECT * from RGraph where sn = 783', $link); 
    $row=mssql_fetch_array($data); 
    echo $row["sFile"]; 
    }
    

      

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    </head>
    
    <body>
    <table width="100%" border="0">
      <tr>
        <td><img border="0" src="r.php" ></td>
      </tr>
    </table>
    </body>
    </html>
    

      

  • 相关阅读:
    SharePoint Framework 构建你的第一个web部件(二)
    win32
    win32
    win32
    win32
    C++ 将filesystem::path转换为const BYTE*
    win32
    win32
    win32
    win32
  • 原文地址:https://www.cnblogs.com/qingsong/p/4910082.html
Copyright © 2011-2022 走看看