First, PHP is a server-side web programming language very similar to ASP, although in my opinion, more powerful and straightforward.<br>
<br>
However, since I was the one that sent you here, I'll have to take a moment more to help evaluate your situation, which might not need PHP at all.<br>
<br>
1. Do the people uploading these images need immediate feedback on the image size? In other words does it need to display online instantly at the new resampled size, or can it wait until the next day or whatever time period you decide?<br>
<br>
2. What kind of web server are you running? Apache on Unix, IIS on Windows NT, or another server? Do you have any authority to install software on this server?<br>
<br>
3. Do you have direct access to the server yourself on an internal network, or are you using FTP to connect?<br>
<br>
If the answer to #1 is no, then all you need to do is set up some sort of scheduled script or macro to run every day (or more) on the server or a connected workstation which checks all the images in a certain directory, resizes them, then saves them to another directory. In this case, on a Unix system, you could use a program like Gimp (we have a forum), which is the Unix version of Photoshop, but which also has a very capable scripting language that could handle this task. In fact, Gimp can be run in "batch mode" which doesn't even use the graphical interface at all. If you are on a Windows system, or have an attached Windows workstation, you could use CorelDraw 8 or 9, which also has a complete scripting environment. I once ran a Corel macro that resized 2000 images in an hour, and saved them back to the web server at the appropriate size. Corel could also import vector images and export them as bitmapped gifs or jpegs, as you mention in your other post.<br>
<br>
If the answer to #1 is yes, then you will need something a little more complicated. PHP can be used as the scripting language to control another program which can then resize the image and display the finished product online. ASP could also accomplish this. The main difficulty is WHICH program do you use? The Unix program called GD can resize GIF images only, so I doubt its usefulness. Gimp can be controlled server-side with Perl, and I believe PHP, but it will be a big learning curve.There is another Unix program called Image Magick. Another possibility is using Java either on the server side or the client.<br>
<br>
I would suggest if at all possible to answer no to question #1 and do the first of these options, because it will save you a lot of work. If you need to have instant feedback, though, PHP is the right forum to be in.<br>
<br>
Good luck, and I will try to help.<br>
<br>