Advertisement
Guest User

Untitled

a guest
Sep 13th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php include("header.php"); ?>  
  2.  
  3. <?php if(!empty($_SESSION['name'])) Echo "welkom, ".$_SESSION['name']. "<br>";  ?>
  4. <table cellspacing="1" width="850px" id="inhoud_table">
  5.  
  6. <?php
  7. $resultfora = mysql_query("SELECT * FROM hoofdfora");
  8. while($fora = mysql_fetch_array($resultfora))
  9. {
  10. echo "<table cellspacing=\"1\" width=\"850px\" id=\"inhoud_table\">";
  11. echo "<tr>";
  12. echo "<th colspan=\"2\">";
  13. echo "$fora['name']";
  14. echo "</th><th width=\"30%\">Laatste bericht</th>";
  15. echo "</tr>";
  16.  
  17.     $resultalgemeen = mysql_query("SELECT * FROM algemeenfora WHERE hoofd = '".$fora['Id']."'");
  18.     while($row = mysql_fetch_array($resultalgemeen))
  19.     {
  20.         echo "<tr><td class=\"table_image\" width=\"30px\"><img src=\"stats.gif\"></td><td class=\"table_category\">";
  21.         echo "<a href=\"#\">".$row['name']."</a>";
  22.         echo "<p>".$row['description']."</p>";
  23.         echo "</td><td class=\"table_last\"><a href=\"#\"><p style=\"float: left;\">Welkom allemaal!</p></a><br><div style=\"float: left;\">Door: Jan</div><div style=\"float: right;\">Vandaag 19:18</div></td>";
  24.         echo "</tr>";
  25.            
  26.     }
  27.     echo "</table>";
  28. }
  29. ?>
  30.  
  31. </table>
  32.  
  33. <br><br>
  34.  
  35. <table cellspacing="1" width="850px" id="inhoud_table">
  36.  
  37. <tr><th colspan="2">Stand van zaken</th></tr>
  38.  
  39. <tr><td class="table_online"><div id="online_users"><b>Actieve gebruikers op dit moment:</b> (8 leden en 2 gasten.)<br>Ik, Jij, Jantje, Pietje, Klaasje, Liesje, Loesje, Riet, Roet, Raat, Reet, Root, Ruut, Joosje, Ik, Jij, Jantje, Pietje, Klaasje, Liesje, Loesje, Riet, Roet, Raat, Reet, Root, Ruut, Joosje</div></td><td class="table_stats" width="50%"><div id="stats"><b>statistieken:</b><br> Discussies: 32.854, Berichten: 790.167, Leden: 26.204, Actieve leden 1.838.<br>We verwelkomen ons nieuwste forumlid, meezie10</div></td></tr>
  40.  
  41. </table>
  42.  
  43.  
  44.  
  45.  
  46. <?php include("footer.html"); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement