img标签图片显示问题 求解
程序员文章站
2024-01-18 20:54:28
...
我的$step字符串是get方式传过来的
1.show.php
2.引入show.html文件,直接输出
3.在firfox上显示正常,把图片链接单独访问是可以访问到图片的
4.但是图片却无法在show.php文件访问时显示
5.用调试工具显示是这样的
求解答,对于状态码493,不明白是啥意思,求解
show.html
菜名:
标签:
推荐理由:
食材:
调料:
步骤:
show.php
//接收数据
$title=$_GET['title'];
$tags=$_GET['tags'];
$intro=$_GET['intro'];
$ingredients=$_GET['ingredients'];
$burden=$_GET['burden'];
$step=$_GET['step'];
//将首尾“@”取出
$step=trim($step,'@');
//将字符串炸开,生成数组
$step=explode('@',$step);
//var_dump($step);exit;
//循环遍历数组
$str = "";
for($i=0;$i ';
}else{
$str.="
{$step[$i]}
";
}
}
//引入模板文件
include 'show.html';
回复内容:
我的$step字符串是get方式传过来的
1.show.php
2.引入show.html文件,直接输出
3.在firfox上显示正常,把图片链接单独访问是可以访问到图片的
4.但是图片却无法在show.php文件访问时显示
5.用调试工具显示是这样的
求解答,对于状态码493,不明白是啥意思,求解
show.html
菜名:
标签:
推荐理由:
食材:
调料:
步骤:
show.php
//接收数据
$title=$_GET['title'];
$tags=$_GET['tags'];
$intro=$_GET['intro'];
$ingredients=$_GET['ingredients'];
$burden=$_GET['burden'];
$step=$_GET['step'];
//将首尾“@”取出
$step=trim($step,'@');
//将字符串炸开,生成数组
$step=explode('@',$step);
//var_dump($step);exit;
//循环遍历数组
$str = "";
for($i=0;$i ';
}else{
$str.="
{$step[$i]}
";
}
}
//引入模板文件
include 'show.html';
你确定不是因为width="100px"还有height="100px"这种写法导致不显示的?
代码贴上来看下
推荐阅读