$strというphpブロックに文字列imgurlがあります。そして、その文字列をimgsrcのimgsrcとして設定したいのですが、機能しません。
<img src="<?php $str ?>" height="50px" width="50px">
他にどのようにsrcを$str文字列に設定できますか?
<img src="<?php echo $str;?>" height="50px" width="50px">
<?php echo '<img src="'.$str.'" height="50px" width="50px">' ?>
他の方法ですが、お勧めしません。あなたは試すことができます:
<img src="<?=$str?>" height="50px" width="50px">
(php.iniで)場合にのみ、これは機能します
short_open_tag = オン