0
有人可以幫助解決這個小問題。我嘗試添加引導類img響應存儲在數據庫中但沒有運氣的圖像。將css添加到數據庫顯示的圖像
下面是現有的代碼我有...
<?php
if(trim($modelQ['illustration'] != "")){
print "<img src=\"illustrations/{$modelQ['illustration']}\" width=\"558\"/>";
} elseif(trim($modelQ['bosal_img'] != "")){
print "<img src=\"illustrations/bosal/{$modelQ['bosal_img']}\" width=\"558\"/>";
}
?>
謝謝利奧,但我試過了,它不起作用。 –
我收到以下錯誤消息。 –
解析錯誤:語法錯誤,意外的T_STRING在第41行的/home/mrexhaus/public_html/page_exhausts.php中 –