On Wed, 16 Aug 2006, Matthew Benjamin wrote:
Can anyone help I have a php script that uploads files to a mysql database. When it uploads the files all of the content in the file gets corrupted. Has anyone expirienced this. I know I can't be the first person with the problem. -- Help!!! Please.
Are you escaping the data from the file? here would be a working php script: $fp=fopen($addfile,"r"); $bvar=fread($fp,filesize($addfile)); fclose($fp); $bvar=addslashes($bvar); $q="insert into table (file) values ('$bvar')"; ed