Quote:
Originally Posted by Nikoo
As you said it works, easy and fast
is it possible to add pictures in the php files and do you know the code?
Thanks for your help!!!
|
Yes, anything is possible
You can add both static and dynamic pictures.
for static images, you could just Echo out basic HTML with in the php content file.
PHP Code:
<?php
echo '<table align="center" cellspacing="2" cellpadding="0" width=100%>';
echo '<tr align="center"> <td rowspan="4"><b><img src="http://www.DOMAIN.com/forums/images/IMAGE.jpg"></b></td></tr>';
echo '<tr align="center"> <td class="largefont"><b>Blah BLah Blah</b></td></tr>';
echo '<tr align="center"> <td class="smallfont"><a href="http://www.DOMAIN.com/forums/forumdisplay.php?f=42"><b>Recent News</b></a></td></tr>';
echo '<tr align="center"> <td class="smallfont"><a href="http://www.DOMAIN.com/forums/forumdisplay.php?f=41"><b>World News Now</b></a></td></tr>';
echo "</table>";
?>
For Dynamic images, you would use php to do that (examples would be any of the Modules for photopost etc.. ) you could take their code and slightly modify it to work as a content file)