wezze Posted July 13, 2012 Share Posted July 13, 2012 how do i get this <?php echo $lang['']; ?> into this code where the text is? <? /** * Just a little page footer, tells how many registered members * there are, how many users currently logged in and viewing site, * and how many guests viewing site. Active users are displayed, * with link to their user information. */ echo "<center><b>Totaal geregistreerde leden:</b> ".$database->getNumMembers()."<br>"; echo "Er zijn $database->num_active_users registreerde leden en "; echo "$database->num_active_guests bezoekers online.<br><br></center>"; include("../../www/log/view_active.php"); ?> thx Quote Link to comment https://forums.phpfreaks.com/topic/265633--/ Share on other sites More sharing options...
scootstah Posted July 13, 2012 Share Posted July 13, 2012 With concatenation. echo "<center><b>" . $lang[''] . "..."; Quote Link to comment https://forums.phpfreaks.com/topic/265633--/#findComment-1361359 Share on other sites More sharing options...
wezze Posted July 13, 2012 Author Share Posted July 13, 2012 cool tyvm Quote Link to comment https://forums.phpfreaks.com/topic/265633--/#findComment-1361400 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.