I have a problem in my php . You see , I have a ads sites , where people add ads if they want to sell something , now , in the upload form of the site where people prepare their ad , I allow them to add 9 pictures of their product, each pictures with a maximum of 3 MB , if they add only 2 pictures it's all okay the ad will be added to the database , but if they add more than 2 pictures then nothing will be added inside the database .
Now , I guess this has something to do with the each row size limit of the database ? or something like that , can you guys help me suggesting what I should do? I am running Mysql InnoDB engine. Thank you so much :)
EDIT :
CODE HERE:
$image0 = addslashes(file_get_contents($_FILES['image0']['tmp_name'])); $image_size = getimagesize ($_FILES['image0']['tmp_name']);
$image0 and $image_size is for the first image , after that comes $image1 and $image_size1 .... and so on for 9 pictures.
if ($image_size==TRUE && !empty($image0))
{
$insert = mysql_query("UPDATE ".$tabla." SET pic1='".$image0."' WHERE id='$lastid' " ) or die (mysql_error());
}
if ($image_size1==TRUE && !empty($image1))
{
$insert = mysql_query("UPDATE ".$tabla." SET pic2='".$image1."' WHERE id='$lastid' " ) or die (mysql_error());
}
if ($image_size2==TRUE && !empty($image2))
{
$insert = mysql_query("UPDATE ".$tabla." SET pic3='".$image2."' WHERE id='$lastid' " ) or die (mysql_error());
}
if ($image_size3==TRUE && !empty($image3))
{
$insert = mysql_query("UPDATE ".$tabla." SET pic4='".$image3."' WHERE id='$lastid' " ) or die (mysql_error());
}
if ($image_size4==TRUE && !empty($image4))
{
$insert = mysql_query("UPDATE ".$tabla." SET pic5='".$image4."' WHERE id='$lastid' " ) or die (mysql_error());
}
if ($image_size5==TRUE && !empty($image5))
{
$insert = mysql_query("UPDATE ".$tabla." SET pic6='".$image5."' WHERE id='$lastid' " ) or die (mysql_error());
}
if ($image_size6==TRUE && !empty($image6))
{
$insert = mysql_query("UPDATE ".$tabla." SET pic7='".$image6."' WHERE id='$lastid' " ) or die (mysql_error());
}
if ($image_size7==TRUE && !empty($image7))
{
$insert = mysql_query("UPDATE ".$tabla." SET pic8='".$image7."' WHERE id='$lastid' " ) or die (mysql_error());
}
if ($image_size8==TRUE && !empty($image8))
{
$insert = mysql_query("UPDATE ".$tabla." SET pic9='".$image8."' WHERE id='$lastid' " ) or die (mysql_error());
}