<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-9">
<meta name="Author" content="Stnc Web Hizmetleri-hide@address.com Tunc">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
</head>
<body>
<script src="ajax/upload.js" type="text/javascript"> </script>
<div id="result"></div>
<form method="POST" enctype="multipart/form-data" id="file_upload_form" name="aktar" action="ajax/picture_add.php">
<table width="500" height="29" border="0">
<tr>
<th colspan="2" scope="col" > picture add</th>
</tr>
<?php
$max_no_img = 4;
for ($res = 1; $res <= $max_no_img; $res++) {
?>
<tr >
<td width="100">
picture <?php echo $res;?>
</td>
<td width="500">
<input type="file" id="picture_<?php echo $res;?>" size="%50" name="file[]" />
</td>
<?php } ?>
</tr>
</table>
<input class="submit" type="submit" name="submit" value="save" class="kaydet">
<iframe id="upload_target" name="upload_target" src="" style="display:none;"></iframe>
</form>
</body></html>