Guten Abend,
ich sitze jetzt schon seit einiger Zeit (4Std.) an meinem Problem.
Und zwar möchte ich per jQuery und
Im Firebug bekomm ich alles als "OK" angezeigt nur auf der Webseite erscheint nichts, kann mir da mal jemand weiterhelfen?!
hier mal der Code
index.html
comment.php
MFG Maxxe
ich sitze jetzt schon seit einiger Zeit (4Std.) an meinem Problem.
Und zwar möchte ich per jQuery und
Kommentare abrufen.$.getJSON
Im Firebug bekomm ich alles als "OK" angezeigt nur auf der Webseite erscheint nichts, kann mir da mal jemand weiterhelfen?!
hier mal der Code
index.html
PHP:
<script type="text/javascript">
$(document).ready(function(){
var u_id='<?php echo $idd;?>';
$.getJSON("comment.php?c_id="+u_id,function(data)
{
$.each(data.posts, function(i,data)
{
var div_data="<li id='"+data.id+"'><b>"+data.comment+"</b></li> ";
$(div_data).appendTo("ol#update");
});
});
});
</script>
<ol id="update"></ol>
comment.php
PHP:
define("DB_COMMENT", DB_SITO3478."comment");
if(isset($_GET['c_id'])){
$result = @mysql_query("SELECT * FROM ".DB_COMMENT." WHERE c_id ='".$_GET['c_id']."' ");
echo '{"posts": [ ';
while($row = mysql_fetch_assoc($result)){
echo'{
"id":"'.$row['id'].'",
"user":"'.$row['c_user'].'",
"comment":"'.$row['comment'].'",
"time":"'.$row['c_time'].'"
}, ';
}
echo ']
}';
}
MFG Maxxe