I have a div that I want to put one image inside, how could I do something like that:
Javascript:
<script>
document.getElementById("people").innerHTML =
document.getElementById("people").innerHTML + "<img src='farmer.gif'>";
</script>
Html:
<html>
<body>
<div id = "people"></div>
</body>
</html>
in PHP? Im so fustrated I can do it in JS but I need to do it in PHP but I don't know how...
Hope you can help me! :D