Transformator

php012

Sep 24th, 2014
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <style>
  2.  
  3. * {
  4. font-family: "Comic sans ms";
  5. }
  6.  
  7. td { width: 200px; }
  8.  
  9. </style>
  10.  
  11. <div id="main">
  12.  
  13. <?php
  14.  
  15. mysql_connect("localhost", "root", "");
  16. mysql_select_db("karlender");
  17.  
  18. $result = mysql_query("SELECT * FROM entries WHERE day = '24' AND month = '09' AND year = '2014'");
  19.  
  20. $first = 0;
  21. while($obj = mysql_fetch_object($result))
  22. {
  23. if($first == 0)
  24. echo "<b>" . $obj->day . "." . $obj->month . "." . $obj->year;
  25. echo "<table><tr>";
  26. echo "<td>" . $obj->day . "." . $obj->month . "." . $obj->year . " -> " . $obj->hour . ":" . $obj->minute . "</td>";
  27. echo "<td>" . $obj->text . "</td>";
  28. echo "</tr></table>";
  29. $first++;
  30. }
  31.  
  32. ?>
  33.  
  34. </div>
Advertisement
Add Comment
Please, Sign In to add comment