PhotoShare/controllers/loadComments.php
Muhammad Anas Rashid 34753111ed My First Web application .. a real shitty one
My First Web application .. a real shitty one
2016-01-28 23:32:09 +05:00

29 lines
485 B
PHP

<?php
session_start();
if(isset($_SESSION['user']))
{
$temp=$_SESSION['user'];
}
else
{
header("Location: ../views/signinPage.php?message=".urlencode("Login again!"));
}
?>
<?php
require_once("../models/comment.php");
$rs = comment ::getComments($_REQUEST['imgId']);
if($rs == false)
{
echo "No Comments are given!";
}
else
{
foreach($rs as $row)
{
echo '"' .$row['commentstr'].'" <i>by</i> <strong>'. $row['username'].'</strong> <br>' ;
}
}
?>