So im trying to build me a website, using php mysql. The following code produces a logo on the site.
<img src='assets/img/<?php echo $bedrijfslogo; ?>' alt='...' />
Where the $bedrijfslogo variable is filled earlier. i know the variable is filled and not null because the logo renders in Chrome, but refuses to render in IE and FF , since there is no value.
When looking at the source in IE, i can see that the variable IS empty?
<img src="assets/img/" alt="..." />
When looking at the source in Chrome there IS a value...
<img src='assets/img/veey2.png' alt='...' />
WTF am i doing wrong here? :/