Displaying Data in Drop down menu

Reply

Join Date: Mar 2008
Posts: 217
Reputation: mrcniceguy is an unknown quantity at this point 
Solved Threads: 4
mrcniceguy mrcniceguy is offline Offline
Posting Whiz in Training

Displaying Data in Drop down menu

 
0
  #1
Aug 9th, 2008
CAn any one show me code or explain how i can display data from mysql database in drop down menu.
I will appreciate your Help))))
Reply With Quote Quick reply to this message  
Join Date: Jul 2008
Posts: 1,076
Reputation: Shanti Chepuru is on a distinguished road 
Solved Threads: 98
Shanti Chepuru's Avatar
Shanti Chepuru Shanti Chepuru is offline Offline
Veteran Poster

Re: Displaying Data in Drop down menu

 
0
  #2
Aug 9th, 2008
hello check this code:
  1. $strQuery = "select $intID, $strName from $tableName order by $strOrderField $strMethod";
  2. $rsrcResult = mysql_query($strQuery);
  3.  
  4. while($arrayRow = mysql_fetch_assoc($rsrcResult)) {
  5. $intIdField = $arrayRow["$intID"];
  6. $strNameField = $arrayRow["$strName"];
  7. echo "<option value=\"$intIdField\">$strNameField</option>\n";
  8. }
  9.  
  10. echo "</select>\n\n";
Be intelligent, But Don't try to cheat.. Be innocent But Don't get cheated..
Reply With Quote Quick reply to this message  
Join Date: Jul 2008
Posts: 1,076
Reputation: Shanti Chepuru is on a distinguished road 
Solved Threads: 98
Shanti Chepuru's Avatar
Shanti Chepuru Shanti Chepuru is offline Offline
Veteran Poster

Re: Displaying Data in Drop down menu

 
0
  #3
Aug 9th, 2008
For more dynamic dropdown with changing second dropdown....
Refer this url:
http://www.plus2net.com/php_tutorial..._down_list.php
Be intelligent, But Don't try to cheat.. Be innocent But Don't get cheated..
Reply With Quote Quick reply to this message  
Join Date: Mar 2008
Posts: 217
Reputation: mrcniceguy is an unknown quantity at this point 
Solved Threads: 4
mrcniceguy mrcniceguy is offline Offline
Posting Whiz in Training

Re: Displaying Data in Drop down menu

 
0
  #4
Aug 9th, 2008
thank you))it works.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



Tag cloud for PHP
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC