fork download
  1. <?php
  2. $lng['home'] = 'Homepage';
  3. $lng['main'] = 'Main';
  4. $lng['forum'] = 'Forums';
  5.  
  6. function info($info) {
  7. global $lng;
  8. echo '<title>TheOtherSide.pl | '.$lng['home'].'</title>';
  9. echo '<div class="thead">'.$lng['home'].'</div><div class="center" align="center">'.$info.'</div>';
  10. }
  11. info('a');
  12. // your code goes here
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
<title>TheOtherSide.pl | Homepage</title><div class="thead">Homepage</div><div class="center" align="center">a</div>