I have an image (arrow.png), I would like to positioning it from left/right/top etc. and how do I rotate the image by a variable what has value from 0-360?
My PHP code
 <?php $degrees = 270;
    echo "<img src='arrow.png'>", "<div id='windfr'>";
    $rotate = imagerotate($degrees, 0); ?>
My CSS:
<style>
  .windfr {
    z-index: 8;
    display: block;
    position:relative;
    left: 425px;
    top: 670px;
  }
</style>