Jump to content

Question on mysql query.


creek16

Recommended Posts

Hi there! I'm using a query which will find a specific item in the DB. how do I assign it to a variable?

 

This is my query:

$qacatc = mysql_query("SELECT category_code FROM tblAssetType WHERE type_description ='$at' ");

Now the result is only one specific string. How will assign the result to a variable?

 

something like this:

$result = $qacatc; //This line does not work. Just to clarify what I want.

 

Is there other way than using this:

while($row = mysql_fetch_array($qacatc))
{
     $result = $row['category_code'];
} 

 

Thanks in advance!

Link to comment
https://forums.phpfreaks.com/topic/240757-question-on-mysql-query/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.