コード例 #1
0
<html lang="pl-PL">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
    <title>MyTwitt Twitt detils</title>

    <!-- Bootstrap -->
      <link href="css/bootstrap.css" rel="stylesheet">
      <link href="css/index.css" rel="stylesheet">

  </head>
  <body>
  <div class="container">
      <!--Go back to the main site-->
      <a class="btn btn-default top-buffer" href="index.php">Wróć</a>

      <!--Show tweet details-->
      <div class="form-signin">
          <h2 class="form-signin-heading">Szczegóły Tweeta:<br></h2>
          <?php 
$tweet = new Tweet($conn);
$tweet->loadFromDB($_GET['tweetShow']);
$tweet->showTweetlong();
?>
      </div>

</div> <!-- /container -->
</body>
</html>