$ Id_get ['id'] fonksiyonu ile sorunu yaşıyorum

0 Cevap

Kullanıcıların pic gibi aynı sayfada bir fotoğrafa yapmak Yorum aramak mümkün olmak istiyorum. ve farklı bir sayfa o pic için bu yorum kadar geldiğinde de görüntülenir. Ben mümkün duyuyorum, ama ben gerçek kodu değiştirmeden bu pic için URL aramak için görünmüyor olabilir.

<?
include.....

$picid = $_GET['picid'];
$query = mysql_query("SELECT * FROM pic_info WHERE picid = 'picid1' ");// problem

while($rows = mysql_fetch_assoc($query)):
$picid = $rows['picid'];
$title = $rows['title'];
$link = $rows['link'];
$description = $rows['description'];
$movie_pic = $rows['movie_pic'];
$source = $rows['source'];

endwhile;

$get_comment = mysql_query("SELECT * FROM comment WHERE picid ='$picid'");// work partially
$comment_count = mysql_num_rows($get_comment);
if ($comment_count>0)
{
while ($com = mysql_fetch_array($get_comment)){
$comment_id = $com['comment_id'];
$name = $com['name'];
$message = $com['message'];
$time_post= $com['time_post'];
$messages .= '<em> on ' .$time_post.'</em><b>   '.$name.'   said.....</b><br/> '.$message.'<hr/>';
}
?>

Problem: only works if I change picid1 to some thing else like picid2 or 3 or 4... work partially :: works when I change picid1 to some thing else like picid2 or 3 or 4... other than that it comes up saying no comment.

Ben sorunun üstünde olup olmadığından emin değilim, çözemiyorum.

0 Cevap