RE: [PHP] Re: Need row number from database select

2002-04-16 Thread Joel Caturia
I have done something like this in the past for a document management system. Everything was assigned a number, so to find a specific document you simply referenced "2.3.12.31.2". It was very simply to create the main index dynamically from this system. (this is the sort of index you would find

RE: [PHP] creating MySQL Users

2002-03-29 Thread Joel Caturia
DAMMIT.. It's too early, I knew I was gonna make that mistake.. GET/PUT/POST, what's the difference right? Sorry, post would be the right method to use.. agh.. - Joel -Original Message- From: Liam [mailto:[EMAIL PROTECTED]] Sent: Friday, March 29, 2002 2:27 PM To: [EMAIL PROTECTED] Su

RE: [PHP] creating MySQL Users

2002-03-29 Thread Joel Caturia
I think you'll find this works better if you use "PUT" as your method, as opposed to POST, which is for File Uploads. (http://www.php.net/manual/en/features.file-upload.php#features.file-upl oad.post-method) Is your code ever actually getting into the 'if' construct, if not, that's probably you

RE: [PHP] File Upload

2002-03-27 Thread Joel Caturia
This sounds similar to what I am having, but not exactly. What version of PHP are using, and on what platform? My problem is the files don't actually appear on the filesystem, yet all of the internal functions in PHP that allow me to manipulate the files appear to "work". I'm using v4.1.2, and I

[PHP] Having problems getting file uploads to work properly

2002-03-26 Thread Joel Caturia
Greetings: I am having problems getting file uploads to completely function. I have a test script that acknowledges the file was successfully uploaded, and I can use the “move_uploaded_file” function without error, however, NOTHING shows up in any of the directories I’m dealing with. I know my