i bir php komut dosyası link bir html formundan link aşağıdaki jquery kodu var. Form sunmalıdır ve jquery kodu güncellemeniz gerekmektedir yorum ve sayfa referesh sanki Yorum gösterir. ama hiçbir şey teslim vurduğunda ben nerede ya da ne ben yanlış yapıyorum görmek cant olur.
<script type="text/javascript">
$(function() {
//When submit button clicked
$('#submit').click(function(){
//Getting data from input fields
var sentby_val = $('#sent_by').val();
var message_val = $('#message').val();
$.post('comment.php', { username: sentby_val, message: message_val }, function(return_data){
//Response from script when comment inserted to database
alert(return_data);
//Clean fields
$('#sent_by').val('<?php print $_SESSION['email']?>');
$('#message').val('');
});
});
});
</script>
Burada html formudur
<form action='comment.php' method='post' style="width: 422px">
<input type='hidden' id="sent_by" name='sent_by' value="<?php print $_SESSION['email']?>"/>
<input type='hidden' id="hidden_id" name='hidden_id' value='<?php print $picid;?>'/>
<textarea name='message' id="message" value="make your comment" style="width: 450px; height: 70px">make your comment</textarea><br/>
<input type='submit' name='sub' value='comment' id="submit" style="border-style:none; float:right;" />
</form>
Burada comment.php olduğu / / hangi gerçekten sorun olmamalı
<?
$name = $_POST['sent_by'];
$picid= $_POST['hidden_id'];
$message = $_POST['message'];
$sub = $_POST['sub'];
if ($sub){if($name&&$message&&$picid)
{
$insert = mysql_query("INSERT INTO comment (name,message,picid) VALUES ('$name','$message','$picid')" );
}
else
{
echo "Please enter a comment";
}
header("location:../profile.php?pic=$id");
?>
ne ben göremiyorum eksik veya yaşıyorum yardım lütfen