miniarma Posted January 3, 2012 Report Share Posted January 3, 2012 Ok trying to get the pilots awards on a seperate page instead of being on the main profile page. Having a bit of trouble as its not feching data at all and ive even added awards to my pilot profile aswell. Here is the code im using <div id="mainbox"> <div class="indent"> <p><?php echo $userinfo->firstname . ' ' . $userinfo->lastname; ?></p> <table> <tr> <td valign="top" nowrap> <p> <strong>My Awards</strong><br /> <?php if(!$allawards) { echo 'No awards yet'; } else { /* To show the image: <img src="<?php echo $award->image?>" alt="<?php echo $award->descrip?>" /> */ ?> <ul> <?php foreach($allawards as $award){ ?> <li><?php echo $award->name ?></li> <?php } ?> </ul> <?php } ?> </p> </tr></table> </div> </div> If anyone could help me I would be grateful. Thanks Quote Link to comment Share on other sites More sharing options...
Moderators servetas Posted January 3, 2012 Moderators Report Share Posted January 3, 2012 Why don't you try to put it in a public function? public function viewawardspage(put here the valiables) { your code } Quote Link to comment 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.