Resimler sütununu açtıktan sonra aşağıdaki kod işini görür yanlız tablo ismini yazmayı unutma ve de ayar.php dosyasını yüklemeyi;
Bunu form.php olarak kaydet;
<form action='islem.php' method='post'>
<center>Site İsmi: <select size="1" name="site">

      <option selected></option>

      <? include('ayar.php');

      $sql=mysql_query("SELECT * FROM tablo");

      while($yaz=mysql_fetch_array($sql)){

   ?>

      <option value="<? echo $yaz["site"];?>"><? echo $yaz["site"];?></option><? }?>

            </select><br>
            Resim: <input type='text' name='resim'><br>
            <input type='submit' value='Resmi Ekle'>
            </form></center>
Bunu da islem.php
<?
include("ayar.php");//Db ayarları
$sql=mysql_query("Select * from tablo");
$resim=$_POST["resim"];
$site=$_POST['site'];
while($yaz=mysql_fetch_array($sql)){
$sorgu=mysql_query("update tablo set site='$site=$site' , title='$yaz['title']', resim='$resim' where site='$site'");}
if($sorgu){
print ("<script language='javascript'>alert('Belirttiğiniz Sitenin Resmi Eklendi');history.go(-1);</script>");
	exit;	}

?>