PHP Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
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 February 3rd, 2000, 10:51 AM
brett_webb brett_webb is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2000
Location: NY, NY,USA
Posts: 18 brett_webb User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
I’m having trouble with the line that starts with $dept_name. $dept_name seems to be getting the array index, instead of the value that is in the department_name table. If I type the sql command into the command line the result is correct. I’m trying to get a name, like Accounting, not a number, as I’m getting now. When I just do this: print $row["dept_id"];
I get the correct numerical value.

I had this:

$result = mysql_query ("SELECT * FROM jobs");

print ("<table>");
if ($row = mysql_fetch_array($result)) {
do {
print ("<tr><td bgcolor=#cccccc>");
print $row["position_name"];
print ("</td><td>");
print ("<b>");
print $row["dept_id"];
print ("</b>");
$dept_name = mysql_query ("SELECT department_name FROM dept_info WHERE dept_id = '$row["dept_id"]'");
print $dept_name;
print ("</td></tr>"); }
while($row = mysql_fetch_array($result)); }
else {print "Sorry, no records were found!";}

print ("</table>");
$result = mysql_query ("SELECT * FROM jobs");

Someone suggested to change the line to:

$selectquery = "SELECT department_name FROM dept_info WHERE dept_id = " . $row["dept_id"];
$dept_name = mysql_query($selectquery);

But I’m still getting the numeric array index.


Reply With Quote
  #2  
Old February 3rd, 2000, 10:59 AM
rod k rod k is offline
Apprentice Deity
Dev Shed Loyal (3000 - 3499 posts)
 
Join Date: Jul 1999
Location: Niagara Falls (On the wrong side of the gorge)
Posts: 3,237 rod k User rank is Private First Class (20 - 50 Reputation Level)rod k User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 m 8 sec
Reputation Power: 13
Send a message via AIM to rod k
Read the manual... that's what you are supposed to get. mysql_query returns a result index that you use to in the various mysql_fetch functions to get the results.

I really don't understand why this is a problem since you did the query from the jobs table correctly.. fetching the result into the array $row.

Try this:

list($dept_name)=mysql_fetch_row(mysql_query("select department_name from dept_info where dept_id = '$row[dept_id]'"));


Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesPHP Development > mysql_query problems


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 | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway
Stay green...Green IT