LuckySyringe
Technical User
I'm using PHP to run a loop of MySQL queries that should update the blobs with small image files, but it doesn't work. I am thinking its because I am running the queries remotely, because the MySQL documentation seems to only upload the files locally, is there any difference?
$fileURL is in the form
where (x) is 1 - 395 (without parenthesis).
-> LuckySyringe
$fileURL is in the form
Code:
[URL unfurl="true"]http://www.host.com/image(x).gif[/URL]
Code:
UPDATE $dbTable SET content=LOAD_FILE('$fileURL') WHERE id=$x
-> LuckySyringe