tot nu toe heb ik dit
ik moet nu de url opgeven van het plaatje
<form action="admin.php?page=<?php echo $currentPage; ?>&action=addImage" method="post">
<table align="center" cellspacing="0" cellpadding="2" border="1" bordercolor="#000000" rules="rows">
<thead>
<tr>
<td class="header" colspan="2"><?php echo $text['imageadd']; ?></td>
</tr>
</thead>
<tbody>
<tr>
<td class="cell">Image URL:</td>
<td class="cell">
<input type="text" name="image" value="http://">
</td>
</tr>
<tr>
<td class="cell">Column:</td>
<td class="cell">
<select name="column">
<?php
for($i=1; $i<=$config['numberOfColumns']; $i++){
echo '<option value="'.$i.'">Column '.$i.'</option>';
}
?>
</select>
</td>
</tr>
<tr>
<td class="cell"> </td>
<td class="cell">
<input type="submit" name="submit" value="add">
</td>
</tr>
</tbody>
</table>
</form>