为什么我看到“未能加载给定的URL”?

时间:2013-10-24 08:57:43

标签: php image-loading

我在服务器中有一些图像。但图像未显示。我使用了以下代码。

$baseUrl = "http://gkill7777.net";
<img width="600" src="<?php '.$baseUrl.' ?>/test/test_pssg/images<?php echo $recPsgQuesTest1->pssg; ?>" />`

是服务器问题还是我的编码问题?代码在我的本地服务器上运行得很快......

1 个答案:

答案 0 :(得分:1)

<img width="600" src="<?php '.$baseUrl.' ?>/test/test_pssg/images<?php echo $recPsgQuesTest1->pssg; ?>" />

更改

<?php '.$baseUrl.' ?>

<?php echo $baseUrl; ?>