[PHP-DB] Re: FIle Uploading to database

2002-02-06 Thread Leendert Brouwer
Todd Williamsen [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Well... thanks to Dan Burner for the script... BUT I cannot get this friggin INSERT statement to execute.. which craps out.. Specific error messages might help more. Use mysql_error() with

Re: [PHP-DB] Re: FIle Uploading to database

2002-02-04 Thread Dan Brunner
Hey did you get it to work yet?!?! Dan On Sunday, February 3, 2002, at 09:08 PM, [EMAIL PROTECTED] wrote: Umm.. SET parameter is for the UPDATE query Adam Royle [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... You missed the SET parameter in your

Re: [PHP-DB] Re: FIle Uploading to database

2002-02-04 Thread Dan Brunner
being uploaded. I cannot figure out why -Original Message- From: Dan Brunner [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 7:54 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Re: FIle Uploading to database Hey did you get it to work yet?!?! Dan

Re: [PHP-DB] Re: FIle Uploading to database

2002-02-04 Thread Dan Brunner
To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Re: FIle Uploading to database Does the file come from a Form?? Your hosting provider...might be the problem. Dan On Monday, February 4, 2002, at 09:57 AM, [EMAIL PROTECTED] wrote: I changed it to its absolute path... It resides with my hosting

[PHP-DB] Re: FIle Uploading to database

2002-02-03 Thread Todd Williamsen
Well... thanks to Dan Burner for the script... BUT I cannot get this friggin INSERT statement to execute.. which craps out.. I cannot figure it out. I have been staring at it for about an hour and I still cannot figure it out here it is: $db = @mysql_select_db($db_name, $connection) or

[PHP-DB] RE: FIle Uploading to database

2002-02-03 Thread Adam Royle
You missed the SET parameter in your query... example is below... $query = INSERT INTO Canidate SET (FirstName, LastName, Indus... Adam -Original Message- From: Todd Williamsen [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 11:06 AM To: [EMAIL PROTECTED] Subject: Re: FIle

[PHP-DB] Re: FIle Uploading to database

2002-02-03 Thread Todd Williamsen
Umm.. SET parameter is for the UPDATE query Adam Royle [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... You missed the SET parameter in your query... example is below... $query = INSERT INTO Canidate SET (FirstName, LastName, Indus... Adam -Original