Upload all you images on a directory on your web root...like
for example "images",
present a form with radio button next to the pictures. If you want
the form to be dynamic also.. which mean pictures you uploaded to the directory will automatically be added to the form try this
form.php
########################################
<html>
<body>
<form action="display.php method="POST">
Select Picture:<br>
<?php
$d = dir("images/");
while($file = $d->read()) {
if($file != '..' && $file != '.') {
?>
<input type="radio" name="pic" value="<?php echo $file?>">
<img src="images/<?php echo $file ?>"><br>
<?php
}
}
$d->close();
?>
<input type="text" name="somtext">
</form>
</body>
</html>
########################################
display.php
########################################
<html>
<body>
<?php
echo 'sometext: '.$_POST['somtext'];
echo '<img src="images/'.$_POST['pic'].'">';
?>
</body>
</html>
#########################################
make sure that there are only jpegs and gifs on the images directory. Put the two scripts outside of it.
Hope this helps