scrubbicus Posted May 14, 2009 Share Posted May 14, 2009 index.php if($module->positionExist('featured')) { $module->getFeatured('recent','recent','recent'); } modules.php public function getFeatured($one, $two, $three) { $toLoop = array('one' => $one, 'two' => $two, 'three' => $three); echo '<div id="featured">'; foreach($toLoop as $class => $featured) { echo '<div id="feature" class="'.$class.'"> '.self::getModule($featured).' </div>'; } echo '</div>'; } the class that's getting called to display information } elseif($assoc['type'] == 'articles') { if($results = mysql_query('SELECT * FROM '.$assoc['type'].'')) { while($row = mysql_fetch_array($results)) { if($row['published'] == 1) { $menu[] = $row[1]; } } if($name == 'recent') { echo '<div id="recent"> <span class="header"> » Recent News </span> <ul>'; foreach($menu as $item) { echo '<li> <a href="?page='.$item.'.php"> <span>'.ucwords($item).'</span> </a> </li>'; } echo '</ul> </div>'; } } What's happening is the first one that appears does not go in the <div id="feature" class="one"> it doesn't go in anything, then the next two do appear as they are suppose to but because of the first one the page doesn't look right. The CSS and everything works like it should. I tested it out in basic HTML without trying the classes. I put into some hard code words in the getFeatured right before it calls the class and right after the div starts and that works just fine so it seems like the problem is when it calls self::getModule(), I went into the getModule() and got rid of any code there and told it to just echo the words hello and that did not appear like it should, it appeared outside the <div>. So it's definitely where it calls self::getModule() just can't understand why. Quote Link to comment https://forums.phpfreaks.com/topic/158043-my-php-class-isnt-displaying-right-in-html/ Share on other sites More sharing options...
ohdang888 Posted May 14, 2009 Share Posted May 14, 2009 probabaly has something to do with getModule()...idk cuase i can't see the function Quote Link to comment https://forums.phpfreaks.com/topic/158043-my-php-class-isnt-displaying-right-in-html/#findComment-833715 Share on other sites More sharing options...
mikr Posted May 14, 2009 Share Posted May 14, 2009 I can tell you why the echo "hello" didn't work. <?php echo '<div id="feature" class="'.$class.'"> '.self::getModule($featured).' </div>'; ?> The command "echo" is expecting a value returned to it from self::getModule() which it will then place within its string: ie '<div id="feature" class="$class">{return val from getModule}</div>' . getModule() isn't returning a value, it is just echoing "hello". Amusingly, it executes its echo before the outer echo. So, "hello" ends up in front of the div, while the div ends up empty. Instead of echo "hello" in getModule(), you want to return "hello". That will solve that problem. Quote Link to comment https://forums.phpfreaks.com/topic/158043-my-php-class-isnt-displaying-right-in-html/#findComment-833726 Share on other sites More sharing options...
scrubbicus Posted May 14, 2009 Author Share Posted May 14, 2009 Thanks Quote Link to comment https://forums.phpfreaks.com/topic/158043-my-php-class-isnt-displaying-right-in-html/#findComment-834269 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.