graham23s Posted August 17, 2007 Share Posted August 17, 2007 Hi Guys, made a basic function here to return the name and id of a forum: function get_forum_name($forumid) { $forum_query = "SELECT * FROM `forum_sections` WHERE `id`='$forumid'"; $forum_result = mysql_query($forum_query) or die (mysql_error()); $forum = mysql_fetch_array($forum_result) or die (mysql_error()); $for_id = $forum['id']; $for_name = $forum['forum_name']; return; } call the function: get_forum_name($forumid); iv tested the code on the main page it works fine but when called it returns nothing not sure how that is cheers Graham Quote Link to comment https://forums.phpfreaks.com/topic/65513-solved-function-not-returning-data/ Share on other sites More sharing options...
Mateobus Posted August 17, 2007 Share Posted August 17, 2007 have you tried changing the last line to: return $for_name; Quote Link to comment https://forums.phpfreaks.com/topic/65513-solved-function-not-returning-data/#findComment-327131 Share on other sites More sharing options...
graham23s Posted August 17, 2007 Author Share Posted August 17, 2007 Hi Mate, just tried still nothing what would cause the return to fail do you think, the code works fine not in a function. cheers Graham Quote Link to comment https://forums.phpfreaks.com/topic/65513-solved-function-not-returning-data/#findComment-327138 Share on other sites More sharing options...
Orio Posted August 17, 2007 Share Posted August 17, 2007 Well you are just calling the function and doing nothing with it, try: echo get_forum_name($forumid); Also, do what Mateobus told you, you want the function to return something. Orio. Quote Link to comment https://forums.phpfreaks.com/topic/65513-solved-function-not-returning-data/#findComment-327139 Share on other sites More sharing options...
graham23s Posted August 17, 2007 Author Share Posted August 17, 2007 ah i see thanks guys its working now. cheers Graham Quote Link to comment https://forums.phpfreaks.com/topic/65513-solved-function-not-returning-data/#findComment-327151 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.