Salve ho un problema con il io sistema di commenti, in pratica non invia effettivamente il commento.
commenti.sql
Codice PHP:
CREATE TABLE IF NOT EXISTS `commenti` (
`user_id` varchar(40) NOT NULL,
`photo_id` int(11) NOT NULL,
`commenti` text NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
);
home.php (dove gli utenti vedono le foto di chi seguono)
Codice PHP:
<div class="new-com-bt">
<span>Scrivi un commento..</span>
</div>
<?php
$sql = mysql_query("SELECT * FROM commenti WHERE photo_id = '$photo_id'") or die(mysql_error());;
while($affcom = mysql_fetch_assoc($sql)){
$user_id = $_SESSION['user'];
$photo_id = $_POST['photo_id'];
$commenti = $_POST['commenti'];
$date = $affcom['date'];
?>
<div class="cmt-cnt">
<a href="<?php echo $baseurl . "/" . $photo_username ?>"><img src="./core/getimg.php?profiloimg=<?php echo $photo_userid ?>" class="home-foto-profilofoto" /></a>
<div class="thecom">
<h5><?php echo $user_id; ?></h5><span data-utime="1371248446" class="com-dt"><?php echo $date; ?></span>
<br/>
<p>
<?php echo $commenti; ?>
</p>
</div>
</div><!-- end "cmt-cnt" -->
<?php } ?>
<div class="new-com-cnt">
<textarea class="the-new-com"></textarea>
<div class="bt-add-com">Commenta</div>
<div class="bt-cancel-com">a</div>
</div>
<div class="clear"></div>
</div>