[snip]
The following php code was working to upload files to my mysql db until
I
upgraded to mysql 4.0. Now, the files I try to upload do not get put
into
the folder. There is no error, the file just does not get posted. Any
ideas?
<p> Uploading File...<p>
<?php
echo $userfile;
echo '<p>';
$destination = 'uploads/' . $HTTP_POST_FILES['userfile']['name'];
@copy($HTTP_POST_FILES['userfile']['tmp_name'],$destination);
error_reporting(E_ALL);
?>
[/snip]
Really? It was just putting the uploaded information into the database?