作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
$query = mysql_query("SELECT * FROM `Rorschach` WHERE Rid = $init");
$query2 = mysql_fetch_array($query);
//$repd = $rep2[0];
$rid = $query2[0];
$rname = $query2[1];
$rimage = $query2[2];
echo '<div class='tab-pane active' id='profile'>
<table class='table'>
<tbody>
<tr> $rimage
<td class='td-actions text-right'>
<img src="data:image/jpeg;base64,'.base64_encode($rimage['Rimage'] ).'" height="200" width="200" class="img-thumnail" />
<div class='radio'>
<label>
<font color='#777'>True</font> <input type='radio' name = '' value = '1'>
</label>
<label>
<font color='#777'>False</font> <input type='radio' name = '' value = '0'>
</label>
</div>
</td>
</tr>
</tbody>
</table>
</div>';
当我使用 $rimage
时那个时候它显示没有编码的图像所以它没有用。当我使用 <img src="data:image/jpeg;base64,'.base64_encode($rimage['Rimage'] ).'" height="200" width="200" class="img-thumnail" />
Echo 命令不执行此行,因为有多个引号。
数据库:
Rid || Rname || Rimage
====+========+=========
1 || abc || img.jpg
最佳答案
这不是那条线的问题。您几乎需要更改所有内容。
在echo '<div class='tab-pane active' id='profile'>
, 你正在打开你的 echo
用单引号引起来。这意味着 HTML 中的所有其他内容(如类)都需要用双引号引起来,但任何 PHP 代码除外。如果您打开了 echo
如果使用双引号,则 HTML 中的所有内容都将用单引号引起来,但任何 PHP 代码除外。
为您的 echo
试试这个声明,因为这现在应该可以工作了:
echo '<div class="tab-pane active" id="profile">
<table class="table">
<tbody>
<tr> '.$rimage.'
<td class="td-actions text-right">
<img src="data:image/jpeg;base64,'.base64_encode($rimage['Rimage'] ).'" height="200" width="200" class="img-thumnail" />
<div class="radio">
<label>
<font color="#777">True</font> <input type="radio" name = " " value = "1">
</label>
<label>
<font color="#777">False</font> <input type="radio" name = " " value = "0">
</label>
</div>
</td>
</tr>
</tbody>
</table>
</div>';
关于php - 想要在查询中显示数据库中包含多个引号的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49342913/
使用登录后,我想吐出用户名。 但是,当我尝试单击登录按钮时, 它给了我力量。 我看着logcat,但是什么也没显示。 这种编码是在说。 它将根据我在登录屏幕中输入的名称来烘烤用户名。 不会有任何密码。
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎是题外话,因为它缺乏足够的信息来诊断问题。 更详细地描述您的问题或include a min
我是一名优秀的程序员,十分优秀!