Quote:
Originally Posted by halfpint
This is to allow users to upload images but it only allows three images and I want to allow 6 images what do I have to change on this peice of code to allow 6 images
Code:
for($im2 = '1'; $im2 <= (3 - $mi); $im2++)
Thanks
|
Iv just figured it out... had to change the (3 - $mi) to (6 - $mi)
