I am running a forum using php...and I want to add an image at the top, so i figure i just need to edit index.php, but how do an <img src in php??
you don't really.
either ?> <img src="blah.gif"> <?
OR
echo "<img src=\"blah.gif\">";
Whatever you prefer.