RE: inserting images to mysql - is it possible?

2003-06-30 Thread Benjamin Davis
check out http://www.phpbuilder.com thay have a lot of things and that is one off them. -- eschew obfuscation. -Original Message- From: Digital Directory USA [mailto:[EMAIL PROTECTED] Sent: 29 June 2003 19:28 To: [EMAIL PROTECTED] Subject: inserting images to mysql - is it possible? I

Re: inserting images to mysql - is it possible?

2003-06-30 Thread Bob Ostermann
PROTECTED]> Sent: Monday, June 30, 2003 7:35 AM Subject: Re: inserting images to mysql - is it possible? > Armand- > > Why is it not recommended to store images in a database? I've not heard this... > > > bob. > > > > At 09:51 PM 6/29/03 +0200, you wrote: >

Re: inserting images to mysql - is it possible?

2003-06-30 Thread Gerald Jensen
Sent: Monday, June 30, 2003 7:35 AM Subject: Re: inserting images to mysql - is it possible? > Armand- > > Why is it not recommended to store images in a database? I've not heard this... > > > bob. > > > > At 09:51 PM 6/29/03 +0200, you wrote: > >Hi, > >

Re: inserting images to mysql - is it possible?

2003-06-30 Thread Bob Ostermann
Armand- Why is it not recommended to store images in a database? I've not heard this... bob. At 09:51 PM 6/29/03 +0200, you wrote: Hi, You have to insert a new blob field where you can store binary data. But it is not recommanded to store images in a database. I recommande you to store image

Re: inserting images to mysql - is it possible?

2003-06-29 Thread colbey
If you want to store images in the database, use a blob columntype.. And take a look at this example alot of people have based mysql binary storage off: http://www.php4.com/forums/viewtopic.php?t=6 good luck On Sun, 29 Jun 2003, Digital Directory USA wrote: > I am new to php and mysql, I have

Re: inserting images to mysql - is it possible?

2003-06-29 Thread Armand Turpel
Hi, You have to insert a new blob field where you can store binary data. But it is not recommanded to store images in a database. I recommande you to store images on a server filesystem and only the reference to the images in a database. Armand Digital Directory USA wrote: I am new to php an

inserting images to mysql - is it possible?

2003-06-29 Thread Digital Directory USA
I am new to php and mysql, I have searched looked over and cannot find a way to do this... can it be done? I have set up the following in mysql. How do I upload the product images to the pPhoto column. Any suggestions? ds_produc Field Type Attributes Null Default Extra pID

Re: Inserting images (not the location of the images)

2002-06-26 Thread Eric L. Howard
[please honor my mail-followup-to header] At a certain time, now past, Dana Diederich spake thusly: > Out of curiosity, why would you recommend not putting images into a DB? > I've had a lot of success doing that sort of thing. > > Cheers. > -Dana I never said it wouldn't work, but you need to

Re: Inserting images (not the location of the images)

2002-06-25 Thread Eric L. Howard
At a certain time, now past, Emma Grant spake thusly: > Hi All, > >First of all I want to thank you all for all the help that you have given me >throughout the last week. > 8<--snip > I need to be able to insert images into the database through a FILE FIELD on a

Re: Inserting images (not the location of the images)

2002-06-25 Thread Neil Freeman
You can easily upload images using just your web browser - an FTP program is not needed. You'll need a form with it's encoding set to multipart/form-data, e.g. ... ... ... and then within your receiving script you'll need something similar to: $image_filename = $HTTP_POST_

Re: Inserting images (not the location of the images)

2002-06-25 Thread Keith C. Ivey
On 24 Jun 2002, at 18:36, Emma Grant wrote: > I know that many of you are about to tell me to store the images on my > server, and reference the location from my database field. As I have > read many times throughout my research. But I want the ability for the > user to choose the images they wan

Re: Inserting images (not the location of the images)

2002-06-24 Thread Paul DuBois
At 18:36 -0700 6/24/02, Emma Grant wrote: >Hi All, > >First of all I want to thank you all for all the help that >you have given me throughout the last week. > >I have learnt a great deal, and through your help and the >resources on the interenet I have successfully been able to cr

Inserting images (not the location of the images)

2002-06-24 Thread Emma Grant
Hi All, First of all I want to thank you all for all the help that you have given me throughout the last week. I have learnt a great deal, and through your help and the resources on the interenet I have successfully been able to create and connect to a database through

Re: Inserting images and other blobs

2002-05-21 Thread Tim Best
on 5/21/02 2:09 PM, Jim Philips at [EMAIL PROTECTED] wrote: > On Tuesday 21 May 2002 10:54 am, Info_Best-IT wrote: >> Any suggestions on how to load images from a web site into a MySQL db? I >> would like to set up a page that allows you to select an image from the >> local machine and load it t

Re: Inserting images and other blobs

2002-05-21 Thread Jim Philips
On Tuesday 21 May 2002 10:54 am, Info_Best-IT wrote: > Any suggestions on how to load images from a web site into a MySQL db? I > would like to set up a page that allows you to select an image from the > local machine and load it to my MySQL DB on my web server. > > I'm not sure if it would just

Re: Inserting images and other blobs

2002-05-21 Thread Harrison C. Fisk
TED]> Sent: Tuesday, May 21, 2002 10:54 AM Subject: Inserting images and other blobs > Any suggestions on how to load images from a web site into a MySQL db? I would like > to set up a page that allows you to select an image from the local machine and load > it to my MySQL DB on my web

Inserting images and other blobs

2002-05-21 Thread Info_Best-IT
Any suggestions on how to load images from a web site into a MySQL db? I would like to set up a page that allows you to select an image from the local machine and load it to my MySQL DB on my web server. I'm not sure if it would just be a regular insert statement or something else? Thanks..

Re: inserting images

2001-10-03 Thread Carl Troein
Sandeep Murthy writes: > The database I have created for storing images has a field called > binary_junk which is of type "BLOB" but its still not working... [snipped PHP code] Man, I can see why you have problems getting your code to work. Try checking for errors instead of assuming that every

Re: inserting images

2001-10-03 Thread Sandeep Murthy
t; Cc: <[EMAIL PROTECTED]> Sent: Wednesday, October 03, 2001 5:23 PM Subject: Re: inserting images > I have never done it but have seen posts on this topic. From what I > understand you need to create a BLOB field in your DB (MySQL) then upload > file to your server, read it with f

Re: inserting images

2001-10-03 Thread AJDIN BRANDIC
if anyone can post a query for inserting images in to my > database.. > > TIA, > Sandeep > > > This is what i hv tried: > > > > Binary Data Insert Form > > > > Upload a File: >

inserting images

2001-10-03 Thread Sandeep Murthy
hi all, I have been trying to insert images into my mysql database thru PHP for the past 2 days without any luck.. After having tried various combinations of queries, I gave up.. Wud be grateful if anyone can post a query for inserting images in to my database.. TIA, Sandeep This is what i

Re: [MySQL] Inserting images into a MySQL DB

2001-08-16 Thread Mark Maggelet
On Thu, 16 Aug 2001 14:11:59 -0500, Tim Thorburn ([EMAIL PROTECTED]) wrote: >Hi, > >I'm attempting to store jpg images into a MySQL DB using PHP. I've >found a >few sample scripts that should do this for me, however, they don't >seem to >be working. Could someone take a look at this and see if y

[MySQL] Inserting images into a MySQL DB

2001-08-16 Thread Tim Thorburn
Hi, I'm attempting to store jpg images into a MySQL DB using PHP. I've found a few sample scripts that should do this for me, however, they don't seem to be working. Could someone take a look at this and see if you notice any problems? Thanks -Tim This file has the following Database ID: $

Re: inserting images in mysql tables

2001-06-19 Thread Cal Evans
t: Tuesday, June 19, 2001 11:03 AM Subject: inserting images in mysql tables I am new to mysql. I am attempting to place images in one of my columns. As for my table structure, I have gotten as far as: image blob NOT NULL, How should I proceed? Thanks a bunch ___

Re: inserting images in mysql tables

2001-06-19 Thread Tyler Longren
you should probably just store the images on your server, and provide the location to the image in the table...much quicker. Tyler - Original Message - From: Felicia <[EMAIL PROTECTED]> To: mysql post <[EMAIL PROTECTED]> Sent: Tuesday, June 19, 2001 11:03 AM Subject: inserti

inserting images in mysql tables

2001-06-19 Thread Felicia
I am new to mysql. I am attempting to place images in one of my columns. As for my table structure, I have gotten as far as: image blob NOT NULL, How should I proceed? Thanks a bunch Get free email and a permanent address at

RE: Inserting images into BLOB Fields

2001-05-20 Thread Mike
Thank you!!! -Original Message- From: indrek siitan [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 20, 2001 9:51 PM To: Mike; [EMAIL PROTECTED] Subject: RE: Inserting images into BLOB Fields Hi, > How can I insert an image file into a blob field? I search the MySQL > Documen

RE: Inserting images into BLOB Fields

2001-05-20 Thread indrek siitan
Hi, > How can I insert an image file into a blob field? I search the MySQL > Documents but nothing came up specificaly on inserting images from files. INSERT INTO sig VALUES ( 1, 'Paul', 'Davolio', LOAD_FILE('d:/signatures/paul.txt') );

Inserting images into BLOB Fields

2001-05-20 Thread Mike
How can I insert an image file into a blob field? I search the MySQL Documents but nothing came up specificaly on inserting images from files. Using the Windows version. Here's the script CREATE TABLE sig ( ItemID INT NOT NULL AUTO_INCREMENT, Firs