我试图将 html 中图像的 x 和 y 设置为 php 变量的值,以便坐标处于循环中,以便图像连续绘制 5 次。如果有人能弄清楚如何设置 left: 到 $x 那就太好了
<?php
for($i=0; $i<5; $i++){
$counter = 0;
$x = 200;
echo '<img src="stat.png" height="300" width="150"style="position: absolute; top:
10px; left: <?php echo $x; ?> px;"/>';
// above is where I am trying to use the php variable
$x += 200;
}
?>