tengo este codigo
Código PHP:
<?
include ("../../connect.php");
$target= 'images/';
$date2= date("j-m-Y-H-i-s");
$rand2= rand(0000,9999);
if($target[strlen($target)-1]!='/')
$target=$target.'/';
$count=0;
foreach ($_FILES['fotos']['name'] as $filename)
{
$temp=$target;
$tmp=$_FILES['fotos']['tmp_name'][$count];
$count=$count + 1;
$file_name= $date2."_".$rand2.$filename;
$temp=$temp.basename($file_name);
move_uploaded_file($tmp,$temp);
$temp='';
$tmp='';
$fotos = 'images/class.php?i='.$date2."_".$rand2.$_FILES['fotos']['name'][$count-1];
echo $fotos;
}
// necesito una variable $x que contenga lo que seria $fotos[0],$fotos[1],$fotos[2],etc. asi hasta la cantidad de archivos subidos
$agregar = "INSERT INTO casas (fotos) VALUES ('$fotos')";
mysql_query($agregar) or die(mysql_error());
?>