We need more context to properly answer your question. Where are you doing this? What do you want to accomplish? What are you doing now?
$bestand="/wp-content/gallery/Maandfotos/Maandfoto-142.jpeg"
<img src="$bestand" width="480" height="360" />
<img src="/wp-content/gallery/Maandfotos/Maandfoto-142.jpeg" width="480" height="360" />
de 1e werkt niet, de 2e wel
The first should be
<img src="<?php echo $bestand;?>" width="480" height="360" />
You can’t just drop a PHP variable into HTML and expect PHP things to happen.
Als beginnend wordpresser vond ik hem wel handig