0

我正在尝试回显图像类型的提交按钮输入标签,但我无法让它加载图像,它存储在我网站的 public_html 目录中名为 imgs 的目录中。我拥有的代码是这样的:

echo '<input type="image" src="'.base_url("img/sign_up_0.png").'">';

我已经自动加载了 url helper 并使用它以相同的方式在链接中加载图像。

4

1 回答 1

2

试试这个:

 $image_path = base_url()."imgs/sign_up_0.png";
 echo '<input type="image" src="'.$image_path.'">';
于 2012-12-11T15:41:55.417 回答