If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > PHP > Help with array

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-16-09, 18:20
whizzfrapp whizzfrapp is offline
Registered User
 
Join Date: May 2009
Posts: 1
Help with array

Is there any way to use the keys that i want in a keyed array?
I'm doing this but it gives me an error

Code:
$result = db_query('SELECT * FROM {team}');
  
  $rows = array();
  
  while ($team = db_fetch_object($result)) {
    array_push($rows, $team);
  }  
  
  $check = array();
  
  foreach($rows as $team)
  {
  	 $id = $team->team_id;
  	 $name = $team->name;
  	 array_push($check, $id => t($name));
  }
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On