aussiefly Posted February 26, 2008 Share Posted February 26, 2008 hey guys, for some reason im getting a funny return from this query: $query = mysql_query("SELECT `balance` FROM `members` WHERE userid = '415'"); echo $query; now it just keeps echoing Resource #6. So I thought it was obviously a problem with my query...but when i go and run the query in phpmyadmin it brings up the result no problems. Its freaking driving me nuts...ive been screwing with it for 2 hrs now. Anyone know why ??? Link to comment https://forums.phpfreaks.com/topic/93037-basic-query-driving-me-nuts/ Share on other sites More sharing options...
awpti Posted February 26, 2008 Share Posted February 26, 2008 Because that's all it returns. $data = mysql_fetch_assoc($query); var_dump($data); Link to comment https://forums.phpfreaks.com/topic/93037-basic-query-driving-me-nuts/#findComment-476644 Share on other sites More sharing options...
DarkerAngel Posted February 26, 2008 Share Posted February 26, 2008 With what you have, Remove echo $query; <? $result = mysql_fetch_array($query); print_r($result); ?> Link to comment https://forums.phpfreaks.com/topic/93037-basic-query-driving-me-nuts/#findComment-476645 Share on other sites More sharing options...
aussiefly Posted February 26, 2008 Author Share Posted February 26, 2008 Thanks everyone...i managed to get there with your help. cheers aussie Link to comment https://forums.phpfreaks.com/topic/93037-basic-query-driving-me-nuts/#findComment-476660 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.