Forum Moderators: coopster
Going by what I can infer though, you're getting a bit ahead of yourself. :-)
Without a basic knowledge of PHP the kinds of modifications you want to make are impossible.
However after a few days practice getting to know the language you would be able to do it easily. Lots of great books and tutorials available out there.
<p><div class="imgBox"><img src="<?php print $post_image; ?>" /><div class="captionBox"><?php print $post_imageCap; ?></div></div><?php print $post_content; ?></p>
The other part is just putting the URL into the table, then its just taking it out. Its mixed with all the other stuff in the articles like the date, author, title, content, etc.
print '<p>';
if ($post_image != '') {
?>
<div class="imgBox"><img src="<?php print $post_image; ?>" />
<div class="captionBox"><?php print $post_imageCap; ?></div></div>
<?
}
print $post_content.'</p>';
But it might also make sense to put the condition in with the input validation, just depends on how the existing script is written.