Re: [PHP-DB] Arrays from forms....

2006-11-30 Thread Chris
Gary E. Terry wrote: I know you really meant : ${"image".($key+1)} = $_FILES['pictures']['name'][$key]; Oh yeh ;) Glad we got there in the end! :) -- Postgresql & php tutorials http://www.designmagick.com/ -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.

RE: [PHP-DB] Arrays from forms....

2006-11-30 Thread Gary E. Terry
ists.php.net Subject: Re: [PHP-DB] Arrays from forms Gary E. Terry wrote: > OK.. I am a moron.. Forgot that I had changed the name of the field in the > form, and got sidetracked and didn't change it in the > php... But, still not working correctly. > > Here is the out

Re: [PHP-DB] Arrays from forms....

2006-11-30 Thread Chris
Gary E. Terry wrote: OK.. I am a moron.. Forgot that I had changed the name of the field in the form, and got sidetracked and didn't change it in the php... But, still not working correctly. Here is the output: Array -- Array -- Array Oops this: ${"image".($key+1)} = $_FILES['pictures']['name

RE: [PHP-DB] Arrays from forms....

2006-11-30 Thread Gary E. Terry
OK.. I am a moron.. Forgot that I had changed the name of the field in the form, and got sidetracked and didn't change it in the php... But, still not working correctly. Here is the output: Array -- Array -- Array from: $error) { if ($error == UPLOAD_ERR_OK) { echo "$error_codes[

Re: [PHP-DB] Arrays from forms....

2006-11-30 Thread Chris
Gary E. Terry wrote: Nope... here is the output. "-- -- Array ( [error] => )" So files aren't being uploaded properly at all. Does your form have: enctype="multipart/form-data" in the form header? ie Are your picture fields files? Upload file: -- Postgresql & php tutorials http

RE: [PHP-DB] Arrays from forms....

2006-11-30 Thread Gary E. Terry
Nope... here is the output. "-- -- Array ( [error] => )" -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 10:56 PM To: Gary E. Terry Cc: php-db@lists.php.net Subject: Re: [PHP-DB] Arrays from forms Gary E. Terry wrote: >

Re: [PHP-DB] Arrays from forms....

2006-11-30 Thread Chris
Gary E. Terry wrote: If I print them, there's nothing. all three Here is the same file, in test mode... $error) { if ($error == UPLOAD_ERR_OK) { echo "$error_codes[$error]"; move_uploaded_file( $_FILES["pictures"]["tmp_name"][$key], "bikeimages/" .$_FILES["

RE: [PHP-DB] Arrays from forms....

2006-11-30 Thread Gary E. Terry
27;, '$image3', '$status');"; $result = mysql_db_query("$db", $query) or displayErrorQuery ($query); echo ""; exit; */ ?> I get " -- -- " outputted. -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Thursday, N

Re: [PHP-DB] Arrays from forms....

2006-11-30 Thread Chris
Gary E. Terry wrote: Sorry about that, not CC'ing the list... the values are not always empty, they should always have something in them... There should be 3 images uploading. But, I am sure just to make life interesting, there will be times when there could be as little as one uploaded. I

RE: [PHP-DB] Arrays from forms....

2006-11-30 Thread Gary E. Terry
ssage- From: Chris [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 10:10 PM To: Gary E. Terry Cc: PHP DB Subject: Re: [PHP-DB] Arrays from forms Gary E. Terry wrote: > I don't know if we are on the same page here... Maybe we are and I am just > an idiot. > > T

Re: [PHP-DB] Arrays from forms....

2006-11-30 Thread Chris
Gary E. Terry wrote: I don't know if we are on the same page here... Maybe we are and I am just an idiot. The fields in my db are image1 image2 and image3. There are only three fields in the form that is being passed to the php script. But, on the form they are named "pictures[]". Here is the

Re: [PHP-DB] Arrays from forms....

2006-11-30 Thread Chris
Gary E. Terry wrote: I have a problem. I have done this before, but can't find the files. I am using the following function to upload files from a form. foreach ($_FILES["pictures"]["error"] as $key => $error) { if ($error == UPLOAD_ERR_OK) { echo "$error_codes[$error]"; move_

[PHP-DB] Arrays from forms....

2006-11-30 Thread Gary E. Terry
I have a problem. I have done this before, but can't find the files. I am using the following function to upload files from a form. foreach ($_FILES["pictures"]["error"] as $key => $error) { if ($error == UPLOAD_ERR_OK) { echo "$error_codes[$error]"; move_uploaded_file(

Re: [PHP-DB] Arrays and forms

2003-01-14 Thread Jason Wong
On Wednesday 15 January 2003 03:23, Mignon Hunter wrote: > Hello list, > > I submitted this problem earlier but got no response so I thought I'd > elaborate. > > The code below successfully displays all of the problems from the db. > Based on what is chosen here, needs to go into another table in t

Re: [PHP-DB] Arrays and forms

2003-01-14 Thread Mignon Hunter
Hello list, I submitted this problem earlier but got no response so I thought I'd elaborate. The code below successfully displays all of the problems from the db. Based on what is chosen here, needs to go into another table in the db along with a customer tracking id. for($knt = 0;$row = mysql

[PHP-DB] arrays

2002-11-21 Thread Martin Allan Jensen
Hi everyone, I have a problem sorting my data, I have an array with a flush of values and years from a mysql database. When i have all the values i need php to only print the values, and then group it by year souch that if i had an array that looked like this: Array([2002] => "20",[2002] => "40

Re: [PHP-DB] Arrays again again

2002-11-13 Thread Peter Beckman
The problem there is that you've got $a[$year] getting set a bunch of times. That is busted code. $a[$year] will only contain the LAST value. Replace that line with this one. $a[] = array(year=>$year, value=>$value); OR $a[$i] = array(year=>$year, value=>$value); Now $a[0][year] = 20

Re: [PHP-DB] Arrays again again

2002-11-13 Thread Marco Tabini
Perhaps I don't understand what it is you're looking for, but... $a = array(); for ($i = 0; $i < $maxvalue; $i++) { $a[$year] = $value; } but this is almost too simple, which probably just means I didn't quite understand your question. Marco -- php|architect - The magazine

[PHP-DB] Arrays again again

2002-11-13 Thread Martin Allan Jensen
Sorry fellers Allready figured it outsorrynow i see that the question was foolish Anyway now i need help with something else... I now have some values: 320 - 250 - 290 - 100 And years that fits to them: 2002 - 2003 - 2004 - 2005 How can i put these dynamic values in a arra

[PHP-DB] Arrays again

2002-11-13 Thread Martin Allan Jensen
Hi everyone, I need a little help again I have a array with 4 values: 320 - 570 - 860 - 960 Each time it extracts one value it's supposed to take minus it with the old value. So that the output for the array above would be: 320 - 250 - 290 - 100 I hope you get the point and you're able t

Re: [PHP-DB] arrays & db

2002-11-11 Thread Jason Wong
On Monday 11 November 2002 21:48, Martin Allan Jensen wrote: > Okey people, i try again!! > > I have a table in a mysql database that holds this: > +++++--+ > > | id | maaler | aflaest| vaerdi | pris | > > +++++--+ > >

Re: [PHP-DB] arrays & db

2002-11-11 Thread Ignatius Reilly
Why don't you want to do this with SQL? Ignatius - Original Message - From: "Martin Allan Jensen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 11, 2002 2:48 PM Subject: [PHP-DB] arrays &

[PHP-DB] arrays & db

2002-11-11 Thread Martin Allan Jensen
Okey people, i try again!! I have a table in a mysql database that holds this: +++++--+ | id | maaler | aflaest| vaerdi | pris | +++++--+ | 21 | 11 | 2002-01-01 | 15160 | 0.00 | | 22 | 11 | 2002-02-01 | 15180

Re: [PHP-DB] arrays

2002-09-23 Thread Andrey Sosnitsky
Hello, roslyn. You wrote 23 ñåíòÿáðÿ 2002 ã., 11:51:02: Try file() function "file -- Reads entire file into an array". See manual at http://www.php.net/manual/en/function.file.php for details. rj> hello, rj> im not sure of how to create a 1-d array. i want to read a text file and put each li

[PHP-DB] arrays

2002-09-23 Thread roslyn jose
hello, im not sure of how to create a 1-d array. i want to read a text file and put each line into an array, i wrote the following piece of code but got errors, "; } fclose($fp); ?> basically i need to store the txt file data into the posgresql database. the output of the above code is: ar

[PHP-DB] arrays, variables, and register_globals

2002-07-24 Thread GOLD, MATTHEW
I developed my site on a server where register_globals was off; now I'm putting the site up on a server where they are on. I know how to echo the value of a variable that is passed in the querystring, but I'm having trouble echoing the value of a variable that is in my select statement--I can get

Re: [PHP-DB] Arrays

2002-05-30 Thread Jason Wong
On Friday 31 May 2002 03:53, Morten Nielsen wrote: > Hi, > I need to store a lot of vaiables (75+) in a MySQL database. > What is the best way to do this? Should I create a field for each variable > in the database or is it possible to create an array for a series of > variables? You can put ever

[PHP-DB] Arrays

2002-05-30 Thread Morten Nielsen
Hi, I need to store a lot of vaiables (75+) in a MySQL database. What is the best way to do this? Should I create a field for each variable in the database or is it possible to create an array for a series of variables? Regards, Morten -- PHP Database Mailing List (http://www.php.net/) To uns

Re: [PHP-DB] Arrays

2002-04-15 Thread Alex Francis
Got it now, Thank you -- Alex Francis Cameron Design 35, Drumillan Hill Greenock PA16 0XD Tel 01475 798106 [EMAIL PROTECTED] http://www.camerondesign.co.uk This message is sent in confidence for the addressee only. It may contain legally privileged information. Unauthorised recipients are reque

Re: [PHP-DB] Arrays

2002-04-15 Thread Steve Cayford
Your $eventdate variable is an array, not a string so you can't just drop it into an sql query string like that. If you have separate fields in the db for year, month and day then you probably want something like: $query = "insert into ... values ( ... , '$eventdate[0]', '$eventdate[1]', '$eve

Re: [PHP-DB] Arrays

2002-04-15 Thread Jason Wong
On Tuesday 16 April 2002 04:13, Alex Francis wrote: > I am trying to insert event dats into a database and to make sure the user > puts the date in the correct format. I am now trying to collect the > information from the three fields and insert it into one field. > > code as follows: $eventdate =

[PHP-DB] Arrays

2002-04-15 Thread Alex Francis
I am trying to insert event dats into a database and to make sure the user puts the date in the correct format. I am now trying to collect the information from the three fields and insert it into one field. code as follows: $eventdate = array ("eventyear", "eventmonth", "eventday"); when I inser

RE: [PHP-DB] arrays and email

2002-01-29 Thread Oliver Cronk
It would appear that I should check if anyone else has answered a question first! And get some more sleep! Sorry! Ollie -Original Message- From: olinux [mailto:[EMAIL PROTECTED]] Sent: 29 January 2002 20:05 To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] arrays and email The other thing

RE: [PHP-DB] arrays and email

2002-01-29 Thread olinux
inal Message- > From: Kevin Ruiz [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, January 29, 2002 2:14 PM > To: [EMAIL PROTECTED] > Subject: [PHP-DB] arrays and email > > > I'm working on an application that will allow > someone to view all attendees > for a specifi

RE: [PHP-DB] arrays and email

2002-01-29 Thread Gurhan Ozen
]; $email = $row[12]; $list[$count] = $email; $count = $count + 1; } Hope this helps. Gurhan -Original Message- From: Kevin Ruiz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 29, 2002 2:14 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] arrays and email I'm working

[PHP-DB] arrays and email

2002-01-29 Thread Kevin Ruiz
I'm working on an application that will allow someone to view all attendees for a specific webinar that my company is hosting. I want to allow the user to send one group email to all participants scheduled for that particular webinar. After I connect to my database my code looks like this: \n";

RE: [PHP-DB] arrays

2001-02-06 Thread Alarion
access column names after calling OCIFetchStatement, you will need to load the column names into an array beforehand. Thanks, Sean -Original Message- From: Stas Trefilov [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 12:00 AM To: [EMAIL PROTECTED] Subject: Re:

Re: [PHP-DB] arrays

2001-02-06 Thread Stas Trefilov
Hello, "Alarion"! You wrote: > I want to loop through a result set, say with ODBC, and > use the > "fetch_array" function for each row. Now, What I want is > a an array of all > the rows, so I could then access the "Name" column in Row > 5 like > $values[NAME][5]. > How would I create an array

Re: [PHP-DB] arrays

2001-02-04 Thread phobo
see www.php.net/odbc you want to use odbc_field_name() and odbc_num_fields() Siggy - Original Message - From: "Alarion" <[EMAIL PROTECTED]> To: "'phobo'" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, February 05, 2001 11:4

RE: [PHP-DB] arrays

2001-02-04 Thread Alarion
2001 5:20 PM To: Alarion Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] arrays Like this: $blah = "hello"; $miaow[$blah][5] = 3.14; ( is the same as doing $miaow["hello"][5] = 3.14; ) - Siggy - Original Message - From: "Alarion" <[EMAIL PROTECTED]> T

Re: [PHP-DB] arrays

2001-02-04 Thread phobo
Like this: $blah = "hello"; $miaow[$blah][5] = 3.14; ( is the same as doing $miaow["hello"][5] = 3.14; ) - Siggy - Original Message - From: "Alarion" <[EMAIL PROTECTED]> To: "'PHP-DB'" <[EMAIL PROTECTED]> Sent: Monday,

[PHP-DB] arrays

2001-02-04 Thread Alarion
Hello, Well, I haven't used arrays in PHP too much and am wondering how I might go about this: I want to loop through a result set, say with ODBC, and use the "fetch_array" function for each row. Now, What I want is a an array of all the rows, so I could then access the "Name" column in Row 5 l