Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
Donovan
Client



Joined: Oct 07, 2003
Posts: 735
Location: Ohio

PostPosted: Mon Aug 07, 2006 10:38 am Reply with quote

I am working on another page. I am pulling only one record from a table and am getting this Resource id #153 error.

I don't understand it. All I want to do is get the div_name that corrosponds to the div_commander who is logged in at the time.

Code:
$nukeusername = $userinfo['username'];  

  $sql = ("SELECT div_name FROM " . $prefix . "_eto_divisions WHERE div_commander ='$nukeusername'");
  $mydiv = $db->sql_query($sql);


When I echo $mydiv I get the Resource id error.

I ran across this in my research.

Quote:
When you get a result resource from mysql_query, you must then use one of the mysql functions that take mysql results resources as input (an argument) and processes them. A common one to use is mysql_fetch_assoc.


I still don't understand.
 
View user's profile Send private message Visit poster's website ICQ Number
fkelly
Former Moderator in Good Standing



Joined: Aug 30, 2005
Posts: 3312
Location: near Albany NY

PostPosted: Mon Aug 07, 2006 2:16 pm Reply with quote

I believe mydiv is a "result identifier" that you can use to access a row in the database.

At any rate I think what you need is something like:

$row = $db->sql_fetchrow($mydiv);

Then I think you can retrieve the contents of the field with

$div_name = $row['div_name'];

you are just skipping a necessary step.

If you look in the /db directory at the mysql.php file you'll see that it does a fetch_array when you call for $db->sql_fetchrow. And we know from MYSQL documentation that the fetch_array returns an associative array and an associative array lets you get at values thru the field names.

MYSQL experts feel free to correct me if I've munged anything, I'm learning this as I go.
 
View user's profile Send private message Visit poster's website
gregexp
The Mouse Is Extension Of Arm



Joined: Feb 21, 2006
Posts: 1497
Location: In front of a screen....HELP! lol

PostPosted: Mon Aug 07, 2006 3:22 pm Reply with quote

I'm no expert but the people at php.net seem to agree completely. Wink

_________________
For those who stand shall NEVER fall and those who fall shall RISE once more!! 
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger ICQ Number
Donovan







PostPosted: Mon Aug 07, 2006 7:00 pm Reply with quote

I ended up doing
Code:


 $sql = "SELECT div_id FROM " . $prefix . "_eto_divisions
  WHERE div_commander ='$nukeusername'";
  $result = $db->sql_query($sql); 
  $mydiv = $db->sql_fetchrow($result);
  $div_id = $mydiv[div_id];
 
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©