|
|
|
พี่ครับ เวลาส่งค่าID ข้ามฟรอม แล้วตอนบันทึกผมอยากให้มันเด้งกลับมาหน้าเดิมที่ทำการ comment ควรทำไงอะครับ |
|
|
|
|
|
|
|
อันนี้จะเป็น หน้าที่ทำการคอมเม้นอะครับ
<div class="respond well">
<div class="title"><h4>Post Reply</h4></div>
<div class="form">
<form class="form-horizontal" method="post" action="comment.php?blog_id=<?php echo $_GET["blog_id"]; ?>">
<div class="form-group">
<label class="control-label col-md-3" for="name">name</label>
<div class="col-md-9">
<input type="text" class="form-control" name="name" value="<?php echo $user_profile["name"] ;?>">
</div>
</div>
<div class="form-group">
<label class="control-label col-md-3" for="email">Email</label>
<div class="col-md-9">
<input type="text" class="form-control" name="email">
</div>
</div>
<div class="form-group">
<label class="control-label col-md-3" for="website">Website</label>
<div class="col-md-9">
<input type="text" class="form-control" name="website">
</div>
</div>
<div class="form-group">
<label class="control-label col-md-3" for="comment">Comment</label>
<div class="col-md-9">
<textarea class="form-control" rows="3" name="comment"></textarea>
</div>
</div>
<div class="form-group">
<div class="col-md-9 col-md-offset-3">
<button type="submit" class="btn btn-info">Submit</button>
<button type="reset" class="btn btn-danger">Reset</button>
</div>
</div>
</form>
</div>
</div>
ส่วนนี้เป็นตัวบันทึกอะครับผมทำแบบแยกหน้าอะครับ
<?php
ini_set('display_errors',1);
error_reporting(~0);
$blog_id = $_GET["blog_id"];
$con = new mysqli("localhost","devoneni_ght","bigodpu","devoneni_ght");
$sql = "INSERT INTO comment (name_fb,website,comment,blog_id) VALUES ('".$_POST["name"]."','".$_POST["website"]."','".$_POST["comment"]."','".$_GET["blog_id"]."')";
$query = $con->query($sql);
if($query)
{
echo "Ok";
}
$con->close();
?>
ผมลองใช้เ Header แบบ Refece แล้วมันใช้ได้แต่มันไม่ได้ส่งค่าอะไอดีมาให้ด้วยอะครับ
รบกวนพี่ๆแนะนำผมทีนะครับขอบคุณครับ
Tag : PHP, JavaScript, Ajax, jQuery, CakePHP
|
|
|
|
|
|
Date :
2015-06-21 12:40:15 |
By :
Poae |
View :
787 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|