Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは間違っていますか?
<img src="frame_src/"<?php echo $frameid ?>".png"/>
$frameid が数値に等しい場合、ie= 2
これを試して:-
<img src="frame_src/<?php echo $frameid ?>.png"/>
2 つの引用符 (") を削除しました
設定によっては、これを行うこともできます...
<img src="frame_src/<?=$frameid ?>.png"/>