PHP Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesPHP Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old May 9th, 2000, 08:21 PM
immortal immortal is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2000
Posts: 20 immortal User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to immortal
Im relatively new to this, so I thank you in advance for your patience.

All I need is to create an array with the results from a database column...

Lanny

Reply With Quote
  #2  
Old May 10th, 2000, 04:47 AM
Shiju Rajan's Avatar
Shiju Rajan Shiju Rajan is offline
.Net Developer
Dev Shed Novice (500 - 999 posts)
 
Join Date: Feb 2000
Location: London
Posts: 987 Shiju Rajan User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 h 26 m 22 sec
Reputation Power: 14
Send a message via MSN to Shiju Rajan Send a message via Yahoo to Shiju Rajan
immortal,

let us say ,you are issueing the following mysql query .

$result = mysql_query ("SELECT * FROM tablename WHERE name='$name'");

the row value from the above result can get it using mysql_fetch_array() function.

$row = mysql_fetch_array($result)


Now all the column values are in this $row variable.

these column values you can split using following lines of code.

do {
print $row["name"];
} while($row = mysql_fetch_array($result));




------------------

SR -
shiju.dreamcenter.net

Web developer from GOD's own country!!!!

Reply With Quote
  #3  
Old May 10th, 2000, 02:15 PM
immortal immortal is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2000
Posts: 20 immortal User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to immortal
I got that far, but the problem is, that I want to randomly pick one of the values. If i recall, i think the mysql_fetch_array gives a scalar array ?!?

thanks,

Lanny

Reply With Quote
  #4  
Old May 11th, 2000, 09:26 AM
rycamor rycamor is offline
Gödelian monster
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Jul 1999
Location: Central Florida, USA
Posts: 2,306 rycamor User rank is Sergeant Major (2000 - 5000 Reputation Level)rycamor User rank is Sergeant Major (2000 - 5000 Reputation Level)rycamor User rank is Sergeant Major (2000 - 5000 Reputation Level)rycamor User rank is Sergeant Major (2000 - 5000 Reputation Level)rycamor User rank is Sergeant Major (2000 - 5000 Reputation Level)rycamor User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 3 Days 6 h 42 m 51 sec
Reputation Power: 60
The random selection should be done in the SQL query, not after the array has been created.

Here's an example:

$query = "SELECT id,company,state,telephone,web_address,id*0+RAND() as rand_row FROM lenders WHERE states LIKE "%$contact_state%" ORDER BY rand_row LIMIT 3"; // Select 3 random lenders who serve contact's state.

id*0+RAND uses the id of the record as the seed to generate random values, and LIMIT lets you choose as many or as few random rows as you want, then you can fetch the array as shown above.

Reply With Quote
  #5  
Old May 11th, 2000, 09:24 PM
immortal immortal is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2000
Posts: 20 immortal User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via ICQ to immortal
Got it to work!

<?php

$db = mysql_connect("localhost","user","password");
mysql_select_db("dbase",$db);
$buzzword = "";

for ($i=0; $i<4; $i++) {

$word = mysql_query("SELECT word,word_number*0+RAND() as rand_row FROM buzzwords WHERE word_number=$i ORDER BY rand_row LIMIT 1", $db);

($myrow = mysql_fetch_array($word));

$buzzword .= $myrow[word];
$buzzword .= "n";

}

echo "$buzzword";

?>

Thanks to all who contributed

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesPHP Development > Array from database Entries

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap