View Full Version : uploading image file code and resolving links
AN-net
03-03-2004, 09:15 PM
how do i upload an images code to a dbase like attachments do? and also how can i resolve if a linked img is valid?
AN-net
03-07-2004, 12:07 AM
can someone plz give me some info on how do these and if resolving image links is possible through php
AN-net
03-09-2004, 06:02 PM
anyone?
Dean C
03-09-2004, 06:28 PM
When a file is uploaded via a file upload form a superglobal called $_FILES is created.
Imagine your upload field was: <input type="file" name="image" value="" />
You'd access this files name with $_FILES['image']['name'] for example. A print_r($_FILES); will show you the other information available. Basically you get the file contents like this:
$file_contents = @file_get_contents($_FILES['image']['tmp_name']);
Then write $file_contents to the database :) For the record though it's far easier working with files on the server in the long-run as you don't have the hassle of backing up all that extra storage space when backing up your database :)
AN-net
03-09-2004, 10:30 PM
so file_get_contents breaks the image down into binary or whatever
edit: what should i set the field to in the db where the code is going to go?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.