I have no idea anymore. I have tried this a couple of times now and nothing works. I'm using this HTML form:
html
<input type=file name="file" size=20>
php
if (is_uploaded_file($file)) {
move_uploaded_file($file, "/bild/file.gif");
}
I've even used the function copy($file, "/bild/file.gif"); but it didn't workes either. Any idea guys!??
/MArtin