2018-12-16 20:05:52 +01:00
< ? php if ( ! isset ( $_SESSION ) ) session_start ();
?>
2018-12-12 22:09:48 +01:00
< ? php
include " ../settings/db_connect.php " ;
$post = $_GET [ 'post' ];
if ( $sql = $mysqli -> prepare ( " SELECT blog_id FROM post WHERE post_id = $post " ))
{
$sql -> execute ();
$sql -> bind_result ( $id_blog );
while ( $sql -> fetch ())
{
$blog_id = $id_blog ;
}
}
$sql -> close ();
2018-12-12 21:20:00 +01:00
?>
2018-12-16 20:05:52 +01:00
2018-12-01 22:54:48 +01:00
< html lang = " pl-PL " >
< head >
< meta charset = " utf-8 " >
< title > Bloggero </ title >
< link rel = " Shortcut icon " href = " img/name-label.png " />
< meta content = " width=device-width, initial-scale=1.0 " name = " viewport " >
< meta content = " " name = " keywords " >
< meta content = " " name = " description " >
< script src = " https://code.jquery.com/jquery-3.3.1.slim.min.js " integrity = " sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo " crossorigin = " anonymous " ></ script >
< script src = " https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js " integrity = " sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49 " crossorigin = " anonymous " ></ script >
< script src = " https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js " integrity = " sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy " crossorigin = " anonymous " ></ script >
< link href = " https://fonts.googleapis.com/css?family=Oswald:400,300,700|Lato:400,700 " rel = " stylesheet " >
< link href = " lib/bootstrap/css/bootstrap.min.css " rel = " stylesheet " >
< link href = " css/style.css " rel = " stylesheet " >
< link rel = " stylesheet " href = " https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css " >
<!-- ikony -->
2018-12-06 00:58:20 +01:00
2018-12-01 22:54:48 +01:00
</ head >
< body >
2018-12-12 21:20:00 +01:00
< div class = " dropdown " >
< div id = " menuwrap " >
2018-12-01 22:54:48 +01:00
< button class = " btn btn-light dropdown-toggle btn-lg " type = " button " id = " dropdownMenu2 " data - toggle = " dropdown " aria - haspopup = " true " aria - expanded = " false " >
Menu
</ button >
< div class = " dropdown-menu " aria - labelledby = " dropdownMenu2 " >
2018-12-12 22:09:48 +01:00
< li >< a href = " blog.php?user_id=<?php echo $blog_id ; ?> " > Wróć do bloga </ a ></ li >
2018-12-13 00:58:38 +01:00
< li >< a href = " ../admin-zone/ " > Panel Administratora </ a ></ li >
2018-12-17 20:21:02 +01:00
< li >< a href = " ../index.php " > Strona główna </ a ></ li >
2018-12-01 22:54:48 +01:00
</ div >
</ div >
</ div >
< div id = " aboutdown " >
< section id = " about " name = " about " ></ section >
< div id = " aboutwrap " >
< div class = " container " >
< div class = " row " >
< ? php
2018-12-16 20:05:52 +01:00
//wyliczanie średniej dla posta
if ( $sql = $mysqli -> prepare ( " SELECT ROUND(AVG(R1.rating),1) as averageRating FROM rating R1 RIGHT JOIN (SELECT MAX(R2.timestamp) AS timestamp FROM rating R2 GROUP BY R2.username) R2 ON R1.timestamp=R2.timestamp WHERE post_id= $post " ))
{
$sql -> execute ();
$sql -> bind_result ( $averageRating );
while ( $sql -> fetch ()){}}
//ocena uzytkownika
if ( ! empty ( $_SESSION [ 'user' ])){
$user = $_SESSION [ 'user' ];
if ( $sql = $mysqli -> prepare ( " SELECT rating FROM rating WHERE post_id= $post AND username=' $user ' " ))
{
$sql -> execute ();
$sql -> bind_result ( $userRating );
while ( $sql -> fetch ()){}} }
2018-12-01 22:54:48 +01:00
$trash = '' ;
2018-12-12 21:20:00 +01:00
if ( $sql = $mysqli -> prepare ( " SELECT * FROM post WHERE post_id = $post " ))
2018-12-01 22:54:48 +01:00
{
$sql -> execute ();
$sql -> bind_result ( $post_id , $trash , $title , $description , $main , $image , $date , $mod_date );
while ( $sql -> fetch ())
2018-12-12 21:20:00 +01:00
{ ?>
< div class = " col-lg-12 name foto2 cover foto1 " >
2018-12-01 22:54:48 +01:00
2018-12-12 21:20:00 +01:00
< img class = " align-text-bottom " src = " <?php echo $image ; ?> " alt = " " >
2018-12-01 22:54:48 +01:00
2018-12-12 21:20:00 +01:00
< h1 >< ? php echo $title ; ?> </h1>
2018-12-01 22:54:48 +01:00
</ div >
2018-12-12 21:20:00 +01:00
< div class = " col-lg-12 name-desc " >
< h3 >< ? php echo $description ; ?> </h3>
2018-12-01 22:54:48 +01:00
</ div >
2018-12-12 21:20:00 +01:00
< div class = " col-lg-12 name-desc " >
< post >< ? php echo $main ; ?> </post>
2018-12-06 00:58:20 +01:00
< br >
2018-12-16 20:05:52 +01:00
</ div >
< ? php if ( empty ( $_SESSION [ 'user' ])){ ?>
< div class = " container " >
< div class = " col-lg-12 col-md-12 col-sm-12 col-xs-12 name-desc " >
< h4 >< ? php echo $date ; ?> </h4>
2018-12-17 20:07:28 +01:00
</ div >< br >< br >
2018-12-16 20:05:52 +01:00
< div class = " col-lg-6 col-md-6 col-sm-6 col-xs-12 name-desc " >
< div class = " rate2 " >
< z > Średnia ocena : < ? php echo $averageRating ?> </z>
</ div >
</ div >
</ div >
< ? php }
else {
?>
2018-12-12 21:20:00 +01:00
< div id = " particles-js " >
< div class = " container " >
< form class = " form " action = " rating.php?post=<?php echo $post ; ?> " method = " post " enctype = " multipart/form-data " autocomplete = " off " >
< div class = " row registerMain " >
< div class = " col-lg-12 col-md-12 col-sm-12 col-xs-12 name-desc " >
< h4 >< ? php echo $date ; ?> </h4>
2018-12-17 20:07:28 +01:00
</ div >< br >< br >
2018-12-16 20:05:52 +01:00
2018-12-12 21:20:00 +01:00
< div class = " col-lg-6 col-md-6 col-sm-6 col-xs-12 name-desc elementsOnRegisterMain " >
< div class = " form-group inputmain " >
< div class = " form-group " >
< div class = " rate " >
2018-12-16 20:05:52 +01:00
< z > Twoja ocena : < ? php echo $userRating ?> </z> <br>
2018-12-06 00:58:20 +01:00
2018-12-12 21:20:00 +01:00
< input type = " submit " id = " star5 " name = " rating " value = 5 />
< input type = " submit " id = " star4 " name = " rating " value = 4 />
< input type = " submit " id = " star3 " name = " rating " value = 3 />
< input type = " submit " id = " star2 " name = " rating " value = 2 />
< input type = " submit " id = " star1 " name = " rating " value = 1 />
2018-12-06 00:58:20 +01:00
2018-12-12 21:20:00 +01:00
< label for = " star5 " title = " 5 gwiazdek " > 5 stars </ label >
< label for = " star4 " title = " 4 gwiazdki " > 4 stars </ label >
< label for = " star3 " title = " 3 gwiazdki " > 3 stars </ label >
< label for = " star2 " title = " 2 gwiazdki " > 2 stars </ label >
< label for = " star1 " title = " 1 gwiazdka " > 1 star </ label >
2018-12-16 20:05:52 +01:00
</ div >< z > Średnia ocena : < ? php echo $averageRating ?> </z>
2018-12-17 20:07:28 +01:00
</ div >< br >
2018-12-06 00:58:20 +01:00
</ div >
</ div >
</ div >
</ form >
</ div >
2018-12-12 21:20:00 +01:00
</ div >
2018-12-16 20:05:52 +01:00
< ? php ;} ?>
2018-12-12 21:20:00 +01:00
< ? php }
2018-12-01 22:54:48 +01:00
$sql -> close ();
}
else die ( " Błąd w zapytaniu SQL! Sprawdź kod SQL w PhpMyAdmin. " );
2018-12-16 20:05:52 +01:00
if ( $sql = $mysqli -> prepare ( " SELECT comments.comment_id, comments.post_id, comments.username, comments.tekst, comments.data_dodania, comments.data_modyfikacji, user.user_id FROM comments LEFT JOIN user ON comments.username=user.username WHERE post_id = $post ORDER BY comment_id " ))
2018-12-01 22:54:48 +01:00
{
$sql -> execute ();
2018-12-16 20:05:52 +01:00
$sql -> bind_result ( $comment_id , $post_id , $username , $tekst , $data_dodania , $data_modyfikacji , $user_id ); ?>
< div class = " name-desc " > < h1 > Komentarze </ h1 > </ div >
2018-12-12 21:20:00 +01:00
< ? php while ( $sql -> fetch ())
{ ?>
2018-12-16 20:05:52 +01:00
2018-12-12 21:20:00 +01:00
< div class = " col-lg-12 col-md-12 col-sm-12 col-xs-12 name-desc " >
2018-12-16 20:05:52 +01:00
< a href = " ../blog-post/blog.php?user_id=<?php echo $user_id ; ?> " >< po >< ? php echo $username ; ?> </po></a>
2018-12-12 21:20:00 +01:00
< h6 >< ? php echo $tekst ; ?> </h6>
< h5 >< ? php echo $data_modyfikacji ; ?> </h5>
</ div >
< ? php }
2018-12-01 22:54:48 +01:00
$sql -> close ();
2018-12-12 21:20:00 +01:00
$mysqli -> close ();
} ?>
2018-12-16 20:05:52 +01:00
2018-12-12 21:20:00 +01:00
< div class = " name " > < h2 > Dodaj komentarz :</ h2 > </ div >
2018-12-16 20:05:52 +01:00
< ? php
if ( empty ( $_SESSION [ 'user' ])){ ?>
< div class = " container " >
< form class = " form " action = " ../admin-zone/login.php?post=<?php echo $post ; ?> " method = " post " enctype = " multipart/form-data " autocomplete = " off " >
< div class = " row registerFooter " >
< div class = " offset-3 col-6 offset-3 elementsOnRegisterFooter " >
< div >
< input type = " submit " value = " Zaloguj się by komentować i oceniać wpisy " name = " register " class = " btn btn-block " />
</ div >
</ div >
</ div >
</ form >
</ div >
< ? php
}
else {
?>
2018-12-12 21:20:00 +01:00
< div class = " container " >
< form class = " form " action = " comment.php?post=<?php echo $post ; ?> " method = " post " enctype = " multipart/form-data " autocomplete = " off " >
< div class = " row registerMain " >
< div class = " offset-3 col-6 offset-3 elementsOnRegisterMain " >
< div class = " form-group inputmain " >
< div class = " form-group " >
< textarea class = " form-control " rows = " 4 " id = " tekst " name = " tekst " required ></ textarea >
2018-12-06 00:58:20 +01:00
</ div >
</ div >
</ div >
</ div >
2018-12-12 21:20:00 +01:00
< div class = " row registerFooter " >
< div class = " offset-3 col-6 offset-3 elementsOnRegisterFooter " >
2018-12-06 00:58:20 +01:00
< div >
2018-12-12 21:20:00 +01:00
< input type = " submit " value = " Dodaj " name = " register " class = " btn btn-block " />
2018-12-06 00:58:20 +01:00
</ div >
</ div >
</ div >
</ form >
</ div >
2018-12-16 20:05:52 +01:00
< ? php ;} ?>
2018-12-01 22:54:48 +01:00
</ body >
</ html >