I Have A Background Image Now I want PHP to Put Another Image On Top Of It (The Other Image Is Stored in A Variable) Example variable $x & My Background Image Is Also A Variable $back Example ../img/back.jpg Now i wish to Add The $x On The Left side of The Background How May I Achieve this? Like In This Pic There is The Green Part with a Shadow Image How Can I replace that PART with another Picture using PHP? (https://i.stack.imgur.com/IjK0o.jpg) What i Have so Far
<?php
copy("https://graph.facebook.com/FACEBOOKID/picture?width=99&height=99", "picture.jpg");
$x = "picture.jpg";
copy("https://i.stack.imgur.com/IjK0o.jpg","bg.jpg");
$back = "bg.jpg";
?>