Hi. I'm trying to use the code from here at phpbuilder by Florian Dittmer for uploading to the database a binary picture, but its' not working. Here's my code (with errors to follow):
====
$data = addslashes(fread(fopen('$picture', "r"), filesize('$picture')));
// formulate and run query
$query = "update et01app_pic set picture='$data',statuspic='$statuspic' where user='$username'";
mysql_db_query($db,$query,$connection) or die(mysql_error());
====
And I'm getting the errors:
====
Warning: Unable to access $picture in /usr/local/www/gospelcom/docs/topflight/experiencingleadership/apply/feeandpicture.php on line 127
Warning: fopen("$picture","r") - No such file or directory in /usr/local/www/gospelcom/docs/topflight/experiencingleadership/apply/feeandpicture.php on line
127
Warning: Unable to find file identifier 0 in /usr/local/www/gospelcom/docs/topflight/experiencingleadership/apply/feeandpicture.php on line 127
Might I have a setting wrong? or something wrong in my Database table (mysql). Thanks. I'm posting here a lot lately- still learning this stuff and in the middle of large development project.
Jeof Oyster
Top Flight Leadership
====
$data = addslashes(fread(fopen('$picture', "r"), filesize('$picture')));
// formulate and run query
$query = "update et01app_pic set picture='$data',statuspic='$statuspic' where user='$username'";
mysql_db_query($db,$query,$connection) or die(mysql_error());
====
And I'm getting the errors:
====
Warning: Unable to access $picture in /usr/local/www/gospelcom/docs/topflight/experiencingleadership/apply/feeandpicture.php on line 127
Warning: fopen("$picture","r") - No such file or directory in /usr/local/www/gospelcom/docs/topflight/experiencingleadership/apply/feeandpicture.php on line
127
Warning: Unable to find file identifier 0 in /usr/local/www/gospelcom/docs/topflight/experiencingleadership/apply/feeandpicture.php on line 127
Might I have a setting wrong? or something wrong in my Database table (mysql). Thanks. I'm posting here a lot lately- still learning this stuff and in the middle of large development project.
Jeof Oyster
Top Flight Leadership