View Single Post
  #6 (permalink)  
Old 07-23-2008, 03:42 PM
Brett
 
Posts: n/a
Diggs:
Default Re: Help with arrays in PHP

David,

What and easy fix this turned out to be (smiling with acorn bits at
corner of mouth). I added one line to upload_both.inc.php:

> $file = strtolower($file);


I added this right after line 15 which is:

> $file = str_replace(' ', '_', $_FILES['image']['name']);


Now it changes all file names and extensions to lowercase. Sometimes
it's just too easy.

Brett


Reply With Quote