creek16 Posted June 30, 2011 Share Posted June 30, 2011 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! Quote Link to comment https://forums.phpfreaks.com/topic/240757-question-on-mysql-query/ Share on other sites More sharing options...
mikosiko Posted June 30, 2011 Share Posted June 30, 2011 mysql_result() is an alternative pay attention to the "Description" notes Quote Link to comment https://forums.phpfreaks.com/topic/240757-question-on-mysql-query/#findComment-1236649 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.