i am creating a button on the page and pressing button loads an image. when the image loaded button is moving down and the image occupies the top-left portion. How can i position the image on the right hand side, so that my buttons dont move and the images comes on the right side at some specified loacation and size. Please help me resolving this. check the code snippet below.
<?php
if(isset($_POST['submit']))
{
$imagepath = "shirt7.jpg";
echo "<img src='$imagepath' />";
}
?>
<form method="post" action="">
<input type="submit" name="submit" value="Submit Form">
/form>