[PHP] 2D Array

2002-11-28 Thread Khalid El-Kary
hi, which is faster; filling two array elements with two values, or making a two dimensional array to handle the two values in one element ... which is better for Memory usage as well ? (considering that both of them serve well in my situation) thanx in advance Regards, Khalid Al-Kary

[PHP] 2d array help

2002-01-21 Thread kurth
arg- trying to get the data that I pull outta my db into a 2d assoc array... any help? ~kurth $result = mysql_query( SELECT pkgid FROM plans); while($row = mysql_fetch_assoc($result)){ $resultpkg = mysql_query( SELECT * FROM plans WHERE pkgid='$row[pkgid]');

Re: [PHP] 2d array help

2002-01-21 Thread Erik Price
I'm not sure exactly what you need help with, but if you're getting any errors, I'd recommend adding the resource identifier to your mysql_* functions (usually ($db = mysql_connect(), but YMMV). But I wonder if you were trying to do something else? Erik On Monday, January 21, 2002, at

Re: [PHP] 2d array help

2002-01-21 Thread Jim Lucas [php]
be referanced by the pkgid ? Jim Lucas bend.com - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, January 21, 2002 2:51 PM Subject: [PHP] 2d array help arg- trying to get the data that I pull outta my db into a 2d assoc array... any help? ~kurth $result

Re: [PHP] 2d array help

2002-01-21 Thread Kurth Bemis
, ...); are you wanting to have the above be referanced by the pkgid ? Jim Lucas bend.com - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, January 21, 2002 2:51 PM Subject: [PHP] 2d array help arg- trying to get the data that I pull outta my db

[PHP] 2D array from file

2001-09-26 Thread John Frenzel
I have created a 2D array, then written it into a tet file. The file is written such that all the secondary array elements (the rows) are seperate lines, with the columns tab-delimited. Now I'd like to read this file back into a 2D array. I thought this should work: $array_file = file

Re: [PHP] 2D array from file

2001-09-26 Thread Brian White
I think this is not working because \t is a regular expression and explode only works on strings.. Actually, I have no idea and I feeling very confused right now but maybe try split and see how it goes. Brian At 13:37 26/09/2001 -0400, John Frenzel wrote: I have created a 2D array, then

[PHP] 2D array

2001-07-27 Thread AJDIN BRANDIC
Hi I have been trying to do this for hours now. I have a while loop (rows from mysql db) and on each pass I want to pussh a new element into a 2D array, bot always end up with the last element of the while loop. So: table mytable myname myphone myemail john 254688 [EMAIL

Re: [PHP] 2D array

2001-07-27 Thread AJDIN BRANDIC
mysql_num_rows($result); $i++) { $row = mysql_fetch_row($result); $my2darray[$i] = $row; } Wagner Tomy Editus S.A. - Original Message - From: AJDIN BRANDIC [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, July 27, 2001 2:18 PM Subject: [PHP] 2D array Hi I have been

Re: [PHP] 2D array

2001-07-27 Thread Wagner Tomy
] Sent: Friday, July 27, 2001 2:34 PM Subject: Re: [PHP] 2D array Wag, I do not wish to push whole of the row into an array. Also I need the id of the parent array to be $myname; Ajdin On Fri, 27 Jul 2001, Wagner Tomy wrote: $my2darray = Array(); while($row = mysql_fetch_row($result

Re: [PHP] 2D array

2001-07-27 Thread AJDIN BRANDIC
BRANDIC [EMAIL PROTECTED] To: Wagner Tomy [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, July 27, 2001 2:34 PM Subject: Re: [PHP] 2D array Wag, I do not wish to push whole of the row into an array. Also I need the id of the parent array to be $myname; Ajdin On Fri, 27

[PHP] 2d array?

2001-01-10 Thread Kurth Bemis
i'm confused by the method the go about this. i want to have a location: home / company / about on a page like server.com/company/aboutus.php i'm thinking that i can use an array containing the page name and then search the array and return the page title. now - how do i do this with an

Re: [PHP] 2d array?

2001-01-10 Thread Joe Stump
I'll give it a whirl ... $array_of_page_titles = array( 'aboutus.php' = 'All about our company', 'index.php' = 'Welcome to www.server.com!', 'foo.php' = 'I\'m a worthless script!' ); Then ... TITLE? echo $array_of_page_titles[$file]; ?/TITLE

Re: [PHP] 2d array?

2001-01-10 Thread Toby Butzon
uot;Kurth Bemis" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, January 10, 2001 8:46 PM Subject: Re: [PHP] 2d array? I'll give it a whirl ... $array_of_page_titles = array( 'aboutus.php' = 'All about our company', 'index.php' = 'Welcome to www.server.com!', 'foo.php' = 'I\'