ホームページ >バックエンド開発 >PHPチュートリアル >PHPでデータベース内のBLOBを取得してデータグリッドに表示する方法
PHPでデータベース内のBLOBを取得してデータグリッドに表示する方法
<br /><?php<br /> $sql = "select pic from e_user where uid = '1dff5b51f862e6d181577e3ca34248be'";<br /> $js = get_js_object($sql);<br /> Header( "Content-type: image/png");<br /> echo $js->pic; <br /> echo '<p><img src="../php/testlist.php" width="150"></p>'; <br />?><br />
<br /> <table class="easyui-dategrid" url="../php/testlist.php"><br /> <thead><br /> <tr><br /> <th field="pic" width="120">图片</th> <br /> </tr><br /> </thead><br /></table><br />