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;
}
?>