Re: [PHP] For my next bug... Upload filename gets blanked out

2002-10-08 Thread Justin French
are. > > ---John Holmes... > > - Original Message - > From: <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, October 08, 2002 2:28 PM > Subject: RE: [PHP] For my next bug... Upload filename gets blanked out > > >> <> array.&

Re: [PHP] For my next bug... Upload filename gets blanked out

2002-10-08 Thread 1LT John W. Holmes
Just do a print_r($_FILES) and see what all of the contents are. ---John Holmes... - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 08, 2002 2:28 PM Subject: RE: [PHP] For my next bug... Upload filename gets blanked out > &

RE: [PHP] For my next bug... Upload filename gets blanked out

2002-10-08 Thread Jose
ent: 08 October 2002 19:06 > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: [PHP] For my next bug... Upload filename gets blanked out > > Is register_globals off? If it is, you should be using the $_FILES array. > > ---John Holmes... > > - Original Message ---

Re: [PHP] For my next bug... Upload filename gets blanked out

2002-10-08 Thread Kevin Stone
Sent: Tuesday, October 08, 2002 12:28 PM Subject: RE: [PHP] For my next bug... Upload filename gets blanked out > < array.>> > > I don't think that's it. Tell me if I'm using it improperly, but I tried to > print out the filename: > > print("[&qu

RE: [PHP] For my next bug... Upload filename gets blanked out

2002-10-08 Thread Liam . Gibbs
<> I don't think that's it. Tell me if I'm using it improperly, but I tried to print out the filename: print("[".$_FILES['uploadfile']['name']."]"); Is that it? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] For my next bug... Upload filename gets blanked out

2002-10-08 Thread Liam . Gibbs
<> Hmm. Not sure about register_globals, but I'm not using $_FILES. I assume its use is $_FILES["name_of_file || size_of_file"]? I'll check it out. Is there a disadvantage to using it? Ie. If register_globals is on, will it still work? If there's no disadvantage, I might just go with it anyway..

Re: [PHP] For my next bug... Upload filename gets blanked out

2002-10-08 Thread 1LT John W. Holmes
Is register_globals off? If it is, you should be using the $_FILES array. ---John Holmes... - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 08, 2002 1:35 PM Subject: [PHP] For my next bug... Upload filename gets blanked out > In the form be