Hi,
so:
<form id="form1" name="form1" method="post" action="">
<br />
<table width="96%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="18%" height="25">Name:</td>
<td width="82%"><input name="titel" type="text" id="titel" size="80" value="<?php print $record->titel; ?>" /></td>
</tr>
<tr>
<td height="25" valign="top">Bild:</td>
<td height="25" valign="bottom"><input name="bild" type="file" id="bild" />
<span class="Stil2">
<?php
if (!empty($record->bild))
{
?>
<br />
Aktuell verwendet: <br />
<a href="<?php print FUN::scaleImage($record->bild, 'w800.h600'); ?>"
rel="lightbox"><img src="<?php print FUN::scaleImage($record->bild, FUN::scale43crop(150)); ?>" /></a>
<?php
}
?>
</span></td></tr>
<tr>
<td> </td>
<td height="30" valign="bottom"><input type="submit" name="Submit" value="Senden" /></td>
</tr>
</table>
</form>
Gruß,
Sven