Guest Posted February 16, 2012 Share Posted February 16, 2012 I would thoroughly enjoy if someone solved this. The problem is, is that I want the forum name of any created forum I make displayed by PHP. All of my other codes work except this one... <!-- forum info--> <?php #get forum infos $forum = fetch("SELECT fid, name FROM forums WHERE fid = ".$fid); if(!$forum) $forum = array(); ?> <table class="foruminfo" cellspacing="0"> <tbody> <tr> <td class="foruminfoleft"> <div class="forumdescwrap"> <img class="forumicon" src="/images/cornerpic.jpg"> <h3 class="forumname"><a href="?fid=<?php echo $forum[0] ;?>"><?php echo $forum[1];?></a></h3> Now, that code above seems to work and show the forum name when I take out this code on another PHP file I have: function fetch($query) { $r = mysql_query($query); if($f) {return mysql_fetch_row($r);}} Any suggestions? Quote Link to comment https://forums.phpfreaks.com/topic/257147-php-blocked-out-code/ Share on other sites More sharing options...
PaulRyan Posted February 17, 2012 Share Posted February 17, 2012 Change this: function fetch($query) { $r = mysql_query($query); if($f) {return mysql_fetch_row($r);}} To this: function fetch($query) { $r = mysql_query($query); if($r) {return mysql_fetch_row($r);}} In the IF statement you were checking $f when you should have been checking $r Quote Link to comment https://forums.phpfreaks.com/topic/257147-php-blocked-out-code/#findComment-1318180 Share on other sites More sharing options...
Guest Posted February 17, 2012 Share Posted February 17, 2012 Oh, wow, thanks, man! Fixed both my issues. If you are reading this again, would you know how to do this?: http://trigamer.com/forums/newest.php?fid=1 If you go to that link, how could I fix the blue bar at the top? But on this page it is perfect and I don't even think any of the coding is different. http://trigamer.com/forums/replythread.php?tid=11 Quote Link to comment https://forums.phpfreaks.com/topic/257147-php-blocked-out-code/#findComment-1318184 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.